>
);
}
diff --git a/src/views/ManageList.jsx b/src/views/ManageList.jsx
index 1652624..21ccc8d 100644
--- a/src/views/ManageList.jsx
+++ b/src/views/ManageList.jsx
@@ -104,9 +104,11 @@ export function ManageList({ list }) {
return (
<>
-
+
>
diff --git a/src/views/Modal.jsx b/src/views/Modal.jsx
index 90c36a6..0dc19ec 100644
--- a/src/views/Modal.jsx
+++ b/src/views/Modal.jsx
@@ -46,7 +46,7 @@ export default function BasicModal({ dataEmpty, message }) {
color: theme.palette.primary.main,
}}
size="large"
- onClick={() => navigate('/manage-list')}
+ onClick={() => navigate(message.route)}
>
{message.btnText}
diff --git a/src/views/ShareList.jsx b/src/views/ShareList.jsx
index f1a5eee..1392654 100644
--- a/src/views/ShareList.jsx
+++ b/src/views/ShareList.jsx
@@ -26,9 +26,11 @@ export function ShareList({ userId }) {
return (
<>
-
+
>
diff --git a/tailwind.config.js b/tailwind.config.js
index 00c04c6..07c4dba 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -9,11 +9,27 @@ export default {
archivo: ['Archivo Narrow', 'sans-serif'],
bowlby: ['BowlbyOne Regular', 'Archivo Narrow', 'sans-serif'],
},
+ colors: {
+ third: '#bdc100', // This adds it to the Tailwind color palette as wel
+ },
},
},
plugins: [require('daisyui')],
daisyui: {
- themes: ['lemonade', 'coffee'],
+ themes: [
+ {
+ lemonade: {
+ ...require('daisyui/src/theming/themes')['lemonade'],
+ primary: '#004F2D',
+
+ secondary: '#676D16',
+ // accent:"#bec000",
+ third: '#bdc100',
+ },
+ },
+ ,
+ 'coffee',
+ ],
base: true,
},
};