Skip to content

Commit

Permalink
Merge pull request #24 from zkonduit/move-populate-artifcats-button-t…
Browse files Browse the repository at this point in the history
…o-top

fix: move populate artifacts to be right below gen button
  • Loading branch information
ethan-crypto committed Nov 22, 2023
2 parents 5e65752 + 5cb2526 commit 8ff6536
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion app/felt-utils/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function FeltUtils() {
const { engine } = useSharedResources()

return (
<div className='flex flex-wrap h-screen pt-10 pb-20'>
<div className='flex flex-wrap h-screen'>
<div className='flex flex-col w-1/2 h-1/2 justify-center items-center p-4'>
<div className='w-full h-full overflow-auto'>
<FloatToVecU64Form engine={engine} />
Expand Down
4 changes: 2 additions & 2 deletions app/gen-witness/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ export default function GenWitness() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex flex-col w-full items-center space-y-4'>
<WitnessArtifactForm
handleSubmit={handleSubmit}
alert={alert}
Expand Down Expand Up @@ -233,7 +233,7 @@ function WitnessArtifactForm({
)}
<form
onSubmit={handleSubmit}
className='flex flex-col flex-grow justify-between'
className='flex flex-col flex-grow justify-between'
>
{/* COMPILED ONNX */}
<div>
Expand Down
2 changes: 1 addition & 1 deletion app/hashing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default function Hashing() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex flex-col w-full items-center space-y-4'>
<HashingArtifactForm
handleSubmit={handleSubmitHashing}
alert={alert}
Expand Down
2 changes: 1 addition & 1 deletion app/in-browser-evm-verify/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export default function InBrowserEvmVerify() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex flex-col w-full items-center space-y-4'>
<VerifyingArtifactForm
handleSubmit={handleSubmitVerify}
alert={alertVerify}
Expand Down
4 changes: 2 additions & 2 deletions app/prove/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ export default function Prove() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex justify-between w-full items-stretch space-x-8'>
<div className='flex flex-col w-full items-center space-y-4'>
<div className='flex w-full items-stretch space-x-8'>
<ProvingArtifactForm
handleSubmit={handleSubmitProve}
alert={alertProof}
Expand Down
4 changes: 2 additions & 2 deletions app/setup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ export default function Setup() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex justify-between w-full items-stretch space-x-8'>
<div className='flex flex-col w-full items-center space-y-4'>
<div className='flex w-full items-stretch space-x-8'>
<GenVkArtifactForm
handleSubmit={handleSubmitGenVk}
alert={alertGenVk}
Expand Down
4 changes: 2 additions & 2 deletions app/verify/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export default function Verify() {
) : loading ? (
<Spinner />
) : (
<div className='flex flex-col justify-between w-full items-center space-y-4'>
<div className='flex justify-between w-full items-stretch space-x-8'>
<div className='flex flex-col w-full items-center space-y-4'>
<div className='flex w-full items-stretch space-x-8'>
<VerifyingArtifactForm
handleSubmit={handleSubmitVerify}
alert={alertVerify}
Expand Down

0 comments on commit 8ff6536

Please sign in to comment.