From 1300ab46a0d62541ac6063275757e98e0f600bbd Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Fri, 22 May 2026 17:51:56 +0200 Subject: [PATCH] Use the --border CSS variable in the language switch button component --- src/features/i18n/components/LanguageSwitchButton.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/i18n/components/LanguageSwitchButton.vue b/src/features/i18n/components/LanguageSwitchButton.vue index 7e30294..da0047f 100644 --- a/src/features/i18n/components/LanguageSwitchButton.vue +++ b/src/features/i18n/components/LanguageSwitchButton.vue @@ -92,7 +92,7 @@ const open = function () { align-items: center; gap: 6px; background: none; - border: 1px solid var(--light-d-3); + border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; cursor: pointer; @@ -118,7 +118,7 @@ const open = function () { right: 0; top: calc(100% + 6px); background-color: var(--light-bg); - border: 1px solid var(--light-d-3); + border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12); list-style: none;