From 3fd9d971854e2fb03e5485e7042f6a97e38abf4b Mon Sep 17 00:00:00 2001 From: Ritik Ranjan Date: Mon, 16 Dec 2024 09:18:19 +0530 Subject: [PATCH] feature/auto-hide-tab-bar fixed background color if theme applied --- frontend/app/tab/tabbar.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/app/tab/tabbar.scss b/frontend/app/tab/tabbar.scss index 7a4b6c98a..fb77395e2 100644 --- a/frontend/app/tab/tabbar.scss +++ b/frontend/app/tab/tabbar.scss @@ -39,7 +39,9 @@ position: fixed; z-index: 1000; - background: var(--main-bg-color); + background: transparent; + backdrop-filter: blur(10px); + border-radius: 12px; transition: top 0.3s ease; }