From cf464db2b4dfbc79e144ecb472c8ab856d2e54b2 Mon Sep 17 00:00:00 2001 From: dni Date: Fri, 7 Aug 2026 06:50:08 +0200 Subject: [PATCH] fix: inherit default color for href fixes issues when using plain href, where ugly blue/violet and didnt inherit the proper colors --- lnbits/static/scss/base.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lnbits/static/scss/base.scss b/lnbits/static/scss/base.scss index 7f3c263cf..8b993b072 100644 --- a/lnbits/static/scss/base.scss +++ b/lnbits/static/scss/base.scss @@ -4,6 +4,10 @@ @use 'cards'; @use 'home'; +a { + color: unset; +} + [v-cloak] { display: none; }