diff --git a/assets/global.css b/assets/global.css index 775a08b1e..1c030c6ad 100644 --- a/assets/global.css +++ b/assets/global.css @@ -3,15 +3,27 @@ :root { --bg-primary: white; --bg-secondary: black; + --bg-primary-accent: rgba(0, 0, 0, 0.075); + --text-primary: black; - --text-secondary: #252f3f; + --text-secondary: white; + + --text-default: #252f3f; } [data-theme='dark'] { --bg-primary: black; --bg-secondary: white; + --bg-primary-accent: rgba(255, 255, 255, 0.075); + --text-primary: white; - --text-secondary: white; + --text-secondary: black; + + --text-default: white; +} + +.fit { + min-height: calc(100vh - 200px); } *, diff --git a/components/core/Footer/Footer.tsx b/components/core/Footer/Footer.tsx index fe5d0b056..191ed27b7 100644 --- a/components/core/Footer/Footer.tsx +++ b/components/core/Footer/Footer.tsx @@ -15,6 +15,10 @@ const Footer: FC = ({ className }) => { ) return (
+
) diff --git a/components/core/Layout/Layout.tsx b/components/core/Layout/Layout.tsx index ef8df08dd..603f1a50f 100644 --- a/components/core/Layout/Layout.tsx +++ b/components/core/Layout/Layout.tsx @@ -24,7 +24,7 @@ const CoreLayout: FC = ({ className, children }) => { -
{children}
+
{children}