Skip to content

Commit

Permalink
Merge pull request #26 from Amit0617/dev
Browse files Browse the repository at this point in the history
fix: Modal text not visible
  • Loading branch information
ethan-crypto authored Jan 24, 2024
2 parents a46bcbf + 93600f7 commit b32e524
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/encryption/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ 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'>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px' }}>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px', color: 'white' }}>
{stringify(cipher, null, 6)}
</pre>
</div>
Expand Down Expand Up @@ -241,7 +241,7 @@ export default function Encryption() {
<Modal.Header>Decrypted Cipher File Content: </Modal.Header>
<Modal.Body className='bg-black'>
<div className='mt-4 p-4 bg-black-100 rounded'>
<pre className='whitespace-pre-wrap' style={{ fontSize: '13px' }}>
<pre className='whitespace-pre-wrap' style={{ fontSize: '13px', color: 'white' }}>
{stringify(decrypted, null, 5)}
</pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/gen-witness/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function GenWitness() {
<Modal.Header>Witness File Content: </Modal.Header>
<Modal.Body className='bg-black'>
<div className='mt-4 p-4 bg-black-100 rounded'>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px' }}>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px', color: 'white' }}>
{stringify(witness, null, 6)}
</pre>
</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 @@ -114,7 +114,7 @@ export default function Hashing() {
<Modal.Header>Hash File Content: </Modal.Header>
<Modal.Body className='bg-black'>
<div className='mt-4 p-4 bg-black-100 rounded'>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px' }}>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px', color: 'white' }}>
{stringify(hash, null, 6)}
</pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/prove/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export default function Prove() {
<Modal.Header>Proof File Content: </Modal.Header>
<Modal.Body className='bg-black'>
<div className='mt-4 p-4 bg-black-100 rounded'>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px' }}>
<pre className='blackspace-pre-wrap' style={{ fontSize: '13px', color: 'white' }}>
{stringify(proof, null, 6)}
</pre>
</div>
Expand Down

0 comments on commit b32e524

Please sign in to comment.