From c5c1b8fd2aa59d85614eeb30e127134d2f0a6eaf Mon Sep 17 00:00:00 2001 From: Will Miao Date: Wed, 25 Mar 2026 13:57:38 +0800 Subject: [PATCH] Fix: border corner clipping in duplicate recipe warning Fix the bottom corners of duplicate warning border being clipped due to parent container overflow:hidden and mismatched border-radius. - Changed border-radius from top-only to all corners - Ensures yellow border displays fully without being cut off --- static/css/components/import-modal.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/components/import-modal.css b/static/css/components/import-modal.css index 89be93ad..d0e9cdbb 100644 --- a/static/css/components/import-modal.css +++ b/static/css/components/import-modal.css @@ -687,7 +687,7 @@ padding: 12px 16px; background: oklch(var(--lora-warning) / 0.1); border: 1px solid var(--lora-warning); - border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0; + border-radius: var(--border-radius-sm); color: var(--text-color); }