Refixing light and dark themes

This commit is contained in:
Rajat Dwivedi 2023-03-29 10:56:08 +00:00
parent bbed08e182
commit 33c13608a8
3 changed files with 33 additions and 3 deletions

View file

@ -34,7 +34,7 @@
border-bottom-color: $border; border-bottom-color: $border;
border-bottom-style: solid; border-bottom-style: solid;
border-bottom-width: 1px; border-bottom-width: 1px;
color: $link; color: $text;
display: flex; display: flex;
justify-content: center; justify-content: center;
margin-bottom: -1px; margin-bottom: -1px;
@ -44,12 +44,12 @@
.bw-tabs a:hover { .bw-tabs a:hover {
border-bottom-color: transparent; border-bottom-color: transparent;
color: $link color: $text
} }
.bw-tabs a.is-active { .bw-tabs a.is-active {
border-bottom-color: transparent; border-bottom-color: transparent;
color: $text color: $link
} }
.bw-tabs.is-left { .bw-tabs.is-left {

View file

@ -98,6 +98,22 @@ $family-secondary: $family-sans-serif;
} }
.tabs li:not(.is-active) a {
color: #2e7eb9 !important;
}
.tabs li:not(.is-active) a:hover {
border-bottom-color: #2e7eb9 !important;
}
.tabs li:not(.is-active) a {
color: #2e7eb9 !important;
}
.tabs li.is-active a {
color: #e6e6e6 !important;
border-bottom-color: #e6e6e6 !important ;
}
#qrcode svg { #qrcode svg {
background-color: #a6a6a6; background-color: #a6a6a6;
} }

View file

@ -65,6 +65,20 @@ $family-secondary: $family-sans-serif;
color: $grey !important; color: $grey !important;
} }
.tabs li:not(.is-active) a {
color: #3273dc !important;
}
.tabs li:not(.is-active) a:hover {
border-bottom-color: #3273dc !important;
}
.tabs li:not(.is-active) a {
color: #3273dc !important;
}
.tabs li.is-active a {
color: #4a4a4a !important;
border-bottom-color: #4a4a4a !important ;
}
@import "../bookwyrm.scss"; @import "../bookwyrm.scss";