diff --git a/inertia/components/dashboard/side_nav/side_navigation.tsx b/inertia/components/dashboard/side_nav/side_navigation.tsx index 1432f6e..5d19998 100644 --- a/inertia/components/dashboard/side_nav/side_navigation.tsx +++ b/inertia/components/dashboard/side_nav/side_navigation.tsx @@ -52,6 +52,9 @@ export default function SideNavigation() { {t('collection.create')} + + Archives + diff --git a/inertia/components/layouts/_theme_layout.tsx b/inertia/components/layouts/_theme_layout.tsx index 3735b43..490850b 100644 --- a/inertia/components/layouts/_theme_layout.tsx +++ b/inertia/components/layouts/_theme_layout.tsx @@ -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({ diff --git a/inertia/components/layouts/content_layout.tsx b/inertia/components/layouts/content_layout.tsx index a86e119..5170b62 100644 --- a/inertia/components/layouts/content_layout.tsx +++ b/inertia/components/layouts/content_layout.tsx @@ -18,9 +18,15 @@ const ContentLayoutStyle = styled(TransitionLayout)(({ theme }) => ({ }, })); -const ContentLayout = ({ children }: { children: ReactNode }) => ( +const ContentLayout = ({ + children, + className, +}: { + children: ReactNode; + className?: string; +}) => ( - +
{children}