From b70325b949e09bb0c9da4112d04fc5489b3619cc Mon Sep 17 00:00:00 2001 From: Draconizations Date: Mon, 25 Apr 2022 20:20:53 +0200 Subject: [PATCH] tweak: make buttons and links in nav the same color --- styles/dark.scss | 8 ++++++++ styles/light.scss | 8 ++++++++ 2 files changed, 16 insertions(+) diff --git a/styles/dark.scss b/styles/dark.scss index 4192f7b0..57ccc1c0 100644 --- a/styles/dark.scss +++ b/styles/dark.scss @@ -12,4 +12,12 @@ color: #159bd4 !important; } } + + > * { + .nav-item { + .btn.btn-transparent { + color: rgba(250,250,250,.55); + } + } + } } \ No newline at end of file diff --git a/styles/light.scss b/styles/light.scss index 1adad184..c11845e3 100644 --- a/styles/light.scss +++ b/styles/light.scss @@ -6,4 +6,12 @@ .description a { color: var(--bs-primary) !important; } + + > * { + .nav-item { + .btn.btn-transparent { + color: rgba(0,0,0,.55); + } + } + } } \ No newline at end of file