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
This commit is contained in:
Will Miao
2026-03-25 13:57:38 +08:00
parent e97648c70b
commit c5c1b8fd2a

View File

@@ -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);
}