From 1f0e8141becfb8bc01fff4873a7d3014911ab93b Mon Sep 17 00:00:00 2001 From: Zias van Nes Date: Mon, 17 Nov 2025 10:53:30 +0100 Subject: [PATCH] ui:remove mobile + button and use same as desktop --- src/routes/+page.svelte | 41 +---------------------------------------- 1 file changed, 1 insertion(+), 40 deletions(-) diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index da7387e..72f08dd 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -264,14 +264,6 @@ - - - @@ -331,6 +323,7 @@ .finds-header { display: flex; + justify-content: space-between; padding: 20px; border-bottom: 1px solid rgba(0, 0, 0, 0.1); background: rgba(255, 255, 255, 0.5); @@ -347,30 +340,6 @@ flex-shrink: 0; } - .fab { - position: fixed; - bottom: 2rem; - right: 2rem; - width: 56px; - height: 56px; - background: hsl(var(--primary)); - color: hsl(var(--primary-foreground)); - border: none; - border-radius: 50%; - box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); - cursor: pointer; - display: none; - align-items: center; - justify-content: center; - transition: all 0.2s; - z-index: 200; - } - - .fab:hover { - transform: scale(1.1); - box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); - } - @media (max-width: 768px) { .finds-sidebar { top: auto; @@ -386,14 +355,6 @@ padding: 16px; } - :global(.create-find-button) { - display: none; - } - - .fab { - display: flex; - } - .map-section :global(.map-container) { height: 100vh; }