Skip to content

Commit

Permalink
fix(modal): fix colors
Browse files Browse the repository at this point in the history
  • Loading branch information
IgStefano committed Dec 17, 2024
1 parent 03d7a25 commit a05c813
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Suggestions/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Modal({
>
<div
ref={modalRef}
className="relative h-full w-full overflow-y-scroll bg-white px-12 py-4 sm:max-h-[80%] sm:max-w-[75%] md:max-h-[480px] md:max-w-[600px]"
className="relative h-full w-full overflow-y-scroll bg-[#fafafa] px-12 py-4 sm:max-h-[80%] sm:max-w-[75%] md:max-h-[480px] md:max-w-[600px] dark:bg-[#171717]"
>
<svg
onClick={handleCloseModal}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Suggestions/Suggestions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default function SuggestionsForm({
</div>
<button
type="button"
className="mb-4 mt-2 rounded-md border bg-emerald-400 px-4 py-2 font-bold text-gray-50 transition-opacity duration-300 hover:opacity-70"
className="mb-4 mt-2 rounded-md bg-emerald-400 px-4 py-2 font-bold text-gray-50 transition-opacity duration-300 hover:opacity-70"
onClick={async () => {
await handlePost();
}}
Expand Down

0 comments on commit a05c813

Please sign in to comment.