Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(er-next): transfer colors & core styles + implement Navigation #1430

Merged
merged 14 commits into from Mar 7, 2024
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion apps/epic-react/src/components/app/layout.tsx
Expand Up @@ -9,6 +9,7 @@ const inter = Inter({
subsets: ['latin'],
display: 'swap',
variable: '--font-sans',
weight: ['400', '600', '800'],
})

type LayoutProps = {
Expand Down Expand Up @@ -81,7 +82,7 @@ const Layout: FunctionComponent<React.PropsWithChildren<LayoutProps>> = ({
{withNavigation && <Navigation {...navigationProps} />}
<div
className={twMerge(
'flex h-full min-h-[calc(100svh-4rem)] flex-grow flex-col',
'mt-[61px] flex min-h-[calc(100svh-61px)] flex-grow flex-col',
className,
)}
>
Expand Down