Adjust background color of website

This commit is contained in:
Andreas Nedbal 2020-04-26 23:54:26 +02:00
parent dcb314d9a5
commit 84ee5eec68
2 changed files with 6 additions and 2 deletions

View file

@ -3,7 +3,7 @@
body {
overflow-y: scroll;
word-wrap: break-word;
background-color: $gray-100;
background-color: var(--background);
}
@import "scss/flags";

View file

@ -6,3 +6,7 @@ $card-border-width: 0;
// List Groups
$list-group-border-width: 0;
:root {
--background: #f0edf4;
}