More style adjustments to default and core elements

This commit is contained in:
Andreas Nedbal 2020-05-03 17:28:19 +02:00
parent 9b38b1d736
commit 51bef29ace
3 changed files with 9 additions and 4 deletions

View File

@ -83,8 +83,8 @@ $avatar-sizes: (
--info-text: 255, 255, 255;
--success-text: 255, 255, 255;
--body-text: 0, 0, 0;
--muted-text: 108, 117, 125;
--input-text: 0, 0, 0;
}

View File

@ -1,6 +1,7 @@
body {
overflow-y: scroll;
word-wrap: break-word;
color: RGB(var(--body-text));
background-color: var(--background);
padding-top: $navbar-height;
}

View File

@ -1,4 +1,8 @@
.list-group-item.active {
background-color: var(--primary);
border-color: var(--primary);
.list-group-item {
background-color: transparent;
&.active {
background-color: var(--primary);
border-color: var(--primary);
}
}