From 2230adec6e6367b1f57d578979da70601af2a2ca Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 7 Mar 2026 08:16:12 +0200 Subject: [PATCH] Fix mobile logo styling --- app/components/layout/index.module.css | 12 ------------ app/components/layout/index.tsx | 12 +++--------- 2 files changed, 3 insertions(+), 21 deletions(-) diff --git a/app/components/layout/index.module.css b/app/components/layout/index.module.css index c0c76c65a..3046cfc4a 100644 --- a/app/components/layout/index.module.css +++ b/app/components/layout/index.module.css @@ -176,17 +176,5 @@ @media screen and (max-width: 599px) { .mobileLogo { display: flex; - flex-direction: row; - align-items: center; - justify-content: center; - width: 40px; - height: 36px; - background-color: var(--color-accent); - border-radius: var(--radius-field); - font-weight: var(--weight-bold); - color: var(--color-text); - text-decoration: none; - flex-shrink: 0; - line-height: 1; } } diff --git a/app/components/layout/index.tsx b/app/components/layout/index.tsx index 340bd3d94..be1653292 100644 --- a/app/components/layout/index.tsx +++ b/app/components/layout/index.tsx @@ -342,7 +342,9 @@ export function Layout({ transform: `translateY(${navOffset}px)`, }} > - + + + {sideNavCollapsed ? (
@@ -415,14 +417,6 @@ function SiteLogoContent() { ); } -function MobileLogo() { - return ( - - - - ); -} - function SideNavCollapseButton({ onToggle }: { onToggle: () => void }) { return (