diff --git a/app/globals.css b/app/globals.css index 39b13cd..5311f39 100644 --- a/app/globals.css +++ b/app/globals.css @@ -143,13 +143,11 @@ button { /* toastify */ -.toastify { - margin-top: 30px; -} - .toastify .Toastify__toast { background-color: white; + top: 40px; right: 80px; width: 400px; color: #274168; + border-radius: 0px; } diff --git a/components/Toastify/index.tsx b/components/Toastify/index.tsx index 2695013..7964dd2 100644 --- a/components/Toastify/index.tsx +++ b/components/Toastify/index.tsx @@ -3,13 +3,10 @@ import * as styles from "./style.css"; const Toastify = ({ content }: { content: string }) => { return ( -
-
- INFO -
{content}
-
-
-
+
+ INFO +
{content}
+
); }; diff --git a/components/Toastify/style.css.ts b/components/Toastify/style.css.ts index 0672d96..5bffe8c 100644 --- a/components/Toastify/style.css.ts +++ b/components/Toastify/style.css.ts @@ -8,29 +8,13 @@ export const container = style({ position: "absolute", top: "0", left: "0", - ...flex.FLEX, -}); - -export const contentBox = style({ - width: "100%", + borderRight: `8px solid ${theme.primary}`, gap: "5%", padding: "5%", ...flex.VERTICAL, }); export const content = style({ - ...font.p1, - fontWeight: "700", + ...font.H5, ...flex.BETWEEN, }); - -export const sideBar = style({ - width: "4%", - height: "100%", - backgroundColor: theme.primary, -}); - -export const icon = style({ - width: "23px", - height: "23px", -});