fix: used dark colors for scrollbar in dark mode (#294)

This commit is contained in:
Konstantin Krivlenia 2022-10-23 20:28:21 +03:00 committed by GitHub
parent 3458803cf3
commit af959ae7fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -27,7 +27,12 @@
$input-placeholder: #999;
$outline: #999;
$categoryFontColor: #111;
@if $dark {
color-scheme: dark;
}
@else {
color-scheme: light;
}
@if $dark {
$bg: #222;
$border: #444;