feat: styling login page

This commit is contained in:
Sonny
2024-05-19 14:57:25 +02:00
committed by Sonny
parent 25d70f2faf
commit 2ba0eccc9f
18 changed files with 222 additions and 15 deletions

View File

@@ -64,6 +64,12 @@ function GlobalStyles() {
boxShadow: '0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px #ffffff inset',
display: 'inline-block',
},
hr: {
color: localTheme.colors.secondary,
width: '100%',
marginBlock: '1em',
},
});
const documentStyle = css({

View File

@@ -18,9 +18,15 @@ const ContentLayoutStyle = styled(TransitionLayout)(({ theme }) => ({
},
}));
const ContentLayout = ({ children }: { children: ReactNode }) => (
const ContentLayout = ({
children,
className,
}: {
children: ReactNode;
className?: string;
}) => (
<BaseLayout>
<ContentLayoutStyle>
<ContentLayoutStyle className={className}>
<Navbar />
<main>{children}</main>
<Footer />