From ebffa287987e6e3e09dc37b09a68622b5bad5044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Tue, 26 Jul 2022 14:35:11 +0100 Subject: [PATCH] fix(ui): fix button borders --- ui/src/Styles/DarkTheme.scss | 13 +++++++++++++ ui/src/Styles/LightTheme.scss | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/ui/src/Styles/DarkTheme.scss b/ui/src/Styles/DarkTheme.scss index 4cc9a9c20..3209855a1 100644 --- a/ui/src/Styles/DarkTheme.scss +++ b/ui/src/Styles/DarkTheme.scss @@ -73,6 +73,9 @@ $table-accent-bg: transparent; $card-cap-bg: inherit; +$kbd-color: $white; +$kbd-bg: $dark; + @import "./RebootlessBootstrap"; @import "bootswatch/dist/darkly/bootswatch"; @@ -112,3 +115,13 @@ $color-default: #708090; a { color: $link-color; } + +button.btn { + --bs-btn-active-border-color: transparent; + --bs-btn-hover-border-color: transparent; +} + +kbd { + font-family: $font-family-monospace; + color: $white; +} \ No newline at end of file diff --git a/ui/src/Styles/LightTheme.scss b/ui/src/Styles/LightTheme.scss index 90bd18bc6..2f02e3f39 100644 --- a/ui/src/Styles/LightTheme.scss +++ b/ui/src/Styles/LightTheme.scss @@ -57,6 +57,9 @@ $table-accent-bg: transparent; $card-cap-bg: inherit; +$kbd-color: $white; +$kbd-bg: $dark; + @import "./RebootlessBootstrap"; @import "bootswatch/dist/flatly/bootswatch"; @@ -91,3 +94,13 @@ $color-default: #708090; a { color: $link-color; } + +button.btn { + --bs-btn-active-border-color: transparent; + --bs-btn-hover-border-color: transparent; +} + +kbd { + font-family: $font-family-monospace; + color: $white; +} \ No newline at end of file