From 29c1618472f17115f3cbb7ab8c704b298b42bd51 Mon Sep 17 00:00:00 2001 From: Bruno Charest Date: Sun, 22 Mar 2026 00:47:21 -0400 Subject: [PATCH] Simplify header dropdown menu styling by removing color-mix adjustments and using direct CSS variables --- frontend/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/style.css b/frontend/style.css index 4304735..f0ea9f2 100644 --- a/frontend/style.css +++ b/frontend/style.css @@ -209,8 +209,8 @@ a:hover { position: absolute; top: calc(100% + 8px); right: 0; - background: color-mix(in srgb, var(--bg-secondary) 98%, white 2%); - border: 1px solid color-mix(in srgb, var(--border) 86%, white 14%); + background: var(--bg-secondary); + border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 16px 36px rgba(0,0,0,0.28); min-width: 260px;