Skip to content

Commit

Permalink
Merge pull request #20 from zkonduit/seperate-prove-verify
Browse files Browse the repository at this point in the history
refactor: separate out prove-verify page
  • Loading branch information
ethan-crypto authored Nov 3, 2023
2 parents ccb6de2 + 8f97ab5 commit 15dcbf4
Show file tree
Hide file tree
Showing 8 changed files with 284 additions and 444 deletions.
252 changes: 0 additions & 252 deletions app/App.tsx

This file was deleted.

5 changes: 4 additions & 1 deletion app/components/APINavColumn.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,10 @@ function NavList() {
<Link href='/encryption'>Encryption</Link>
</li>
<li className='h-14 text-slate-500'>
<Link href='/prove-verify'>Prove -{'>'} Verify</Link>
<Link href='/prove'>Prove</Link>
</li>
<li className='h-14 text-slate-500'>
<Link href='/verify'>Verify</Link>
</li>
<li className='h-14 text-slate-500'>
<Link href='/felt-utils'>Field Element Utilities</Link>
Expand Down
2 changes: 1 addition & 1 deletion app/components/Main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
export default function Main({ children }: { children: React.ReactNode }) {
return (
<div className='flex w-full md:w-auto justify-center md:block md:ml-64 p-4 h-[calc(100%-4rem)] lg:pl-40 md:pl-20 sm:pl-10'>
<div className='flex w-full fixed z-[100] md:w-auto justify-center md:block md:ml-64 p-4 min-h-screen lg:pl-40 md:pl-20 sm:pl-10 overflow-auto'>
{children}
</div>
)
Expand Down
Loading

0 comments on commit 15dcbf4

Please sign in to comment.