Skip to content

Commit

Permalink
Merge pull request #25 from zkonduit/minor-bug-fix-encrypt
Browse files Browse the repository at this point in the history
fix: small UI bugs in encrypted page
  • Loading branch information
ethan-crypto authored Nov 22, 2023
2 parents 8ff6536 + 82bde40 commit a46bcbf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/encryption/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ export default function Encryption() {
>
<Modal.Header>Cipher File Content: </Modal.Header>
<Modal.Body className='bg-black'>
<div className='mt-4 p-4 bg-black-100 rounded border'>
<pre className='blackspace-pre-wrap'>
<div className='mt-4 p-4 bg-black-100 rounded'>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px' }}>
{stringify(cipher, null, 6)}
</pre>
</div>
Expand All @@ -211,9 +211,9 @@ export default function Encryption() {
</div>
</div>
) : bufferDecrypt && !warningDecrypt ? (
<div className='w-10/12 flex flex-col'>
<div className='flex flex-col justify-around'>
<h1 className='text-2xl mb-6 '>{decryptResult}</h1>
<div className='flex w-full justify-center pt-5'>
<div className='flex flex-col flex-grow w-full items-center justify-around'>
<Button
className='w-full flex-grow'
type='submit'
Expand Down

0 comments on commit a46bcbf

Please sign in to comment.