diff --git a/src/lib/components/Modal.tsx b/src/lib/components/Modal.tsx index 2659ac1..08f7248 100644 --- a/src/lib/components/Modal.tsx +++ b/src/lib/components/Modal.tsx @@ -10,7 +10,7 @@ const Modal = ({ children, anchorRef, open = false }: Props) => { return ( <> -
+
{children}
diff --git a/src/lib/components/UserCard.tsx b/src/lib/components/UserCard.tsx index 42fcd69..17cc6ef 100644 --- a/src/lib/components/UserCard.tsx +++ b/src/lib/components/UserCard.tsx @@ -117,7 +117,7 @@ const UserCard = ({ user, actionMode, clickAction }: Props) => { {user.displayName} -

+

-

+

diff --git a/tailwind.config.js b/tailwind.config.js index 03c81e9..b5e0999 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -18,7 +18,12 @@ module.exports = { primary: "#1D4ED8" } }, + { + dark: { + ...require("daisyui/src/theming/themes").night, + primary: "#1D4ED8" + } + } ], }, - darkMode: ['class', '[data-theme="night"]'] }