ui: better contrast between active and inactive tabs

This commit is contained in:
Eugene Pankov 2023-03-23 21:31:39 +01:00
parent 4e6b1d2ed2
commit b710c1711f
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -10,7 +10,7 @@ app-root {
&> .content { &> .content {
.tab-bar { .tab-bar {
background: var(--theme-bg-more); background: var(--theme-bg-more-2);
.btn-tab-bar { .btn-tab-bar {
background: transparent; background: transparent;
@ -55,10 +55,11 @@ app-root {
} }
&.active { &.active {
// color: $black; color: var(--theme-fg-less-2);
background: var(--bs-body-bg); background: var(--bs-body-bg);
// border-left: 1px solid $border-color;
// border-right: 1px solid $border-color; border-left: 1px solid var(--theme-bg-less);
border-right: 1px solid var(--theme-bg-less);
} }
} }
} }