From 81e6424f710ec43295ced4b8299d3a40e0874c84 Mon Sep 17 00:00:00 2001 From: Drew Raines Date: Thu, 16 Jul 2026 22:12:02 +0000 Subject: [PATCH] fix: remove mt-[32px] from select project overlay The overlay uses fixed inset-0 to cover the full viewport. The mt-[32px] margin pushed it down 32px, leaving a gap at the top where the background wasn't dimmed. Fixes #167 --- ui/src/views/select_project.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/select_project.rs b/ui/src/views/select_project.rs index 3c7de8f..66b84c6 100644 --- a/ui/src/views/select_project.rs +++ b/ui/src/views/select_project.rs @@ -350,7 +350,7 @@ pub fn SelectProject() -> Element { } } // Overlay (full screen backdrop) - div { class: "bg-foreground/30 mt-[32px] fixed inset-0 z-50 flex items-center justify-center animate-in fade-in duration-100 backdrop-blur-[2px]", + div { class: "bg-foreground/30 fixed inset-0 z-50 flex items-center justify-center animate-in fade-in duration-100 backdrop-blur-[2px]", // Form dialog centered on top div { class: "w-full max-w-lg mx-auto p-8 bg-card-background rounded-lg border border-card-border shadow-card relative z-50", div { class: "mb-6",