From a02c17e4624d63dbb528e96740e1077ae5505bce Mon Sep 17 00:00:00 2001 From: Grzegorz Kucmierz Date: Tue, 10 Feb 2026 20:56:04 +0100 Subject: [PATCH] fix: use theme variables for install banner readability --- src/App.vue | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/App.vue b/src/App.vue index 94b33e3..6c0c221 100644 --- a/src/App.vue +++ b/src/App.vue @@ -188,8 +188,8 @@ onUnmounted(() => { } .install-banner { - background: rgba(0, 242, 254, 0.1); - border: 1px solid var(--primary-neon); + background: var(--banner-bg); + border: 1px solid var(--banner-border); border-radius: 8px; padding: 10px 20px; display: flex; @@ -198,10 +198,11 @@ onUnmounted(() => { width: 90%; max-width: 600px; margin-bottom: 20px; + box-shadow: var(--banner-shadow); } .install-text { - color: #fff; + color: var(--text-color); } .install-actions { @@ -213,7 +214,7 @@ onUnmounted(() => { .install-close { background: transparent; border: none; - color: #aaa; + color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }