Skip to content

Commit 80ca1c3

Browse files
committed
style: generic modal
1 parent 81e51b5 commit 80ca1c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/GenericModal.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ const GenericModal = ({ isOpen, onClose, title, children }) => {
4949
onClick={(e) => e.stopPropagation()}
5050
>
5151
<div className="modal-header">
52-
<h2 className="text-xl font-playfairDisplay text-rose-400">{title}</h2>
52+
<h2 className="text-xl font-mono text-primary-400 font-bold">{title}</h2>
5353
<button onClick={handleClose} className="close-button">
5454
<XIcon size={24} />
5555
</button>
5656
</div>
57-
<hr className="border-gray-500" />
58-
<div className="modal-body text-gray-300">
57+
<hr className="border-gray-800/50" />
58+
<div className="modal-body text-gray-300 font-mono">
5959
{children}
6060
</div>
6161
</div>

0 commit comments

Comments
 (0)