fix(ui): restore page margin and background color. Closes #2959

This commit is contained in:
Gabe Kangas
2023-04-26 21:24:26 -07:00
parent 12d321b097
commit 97fb5a80d0
5 changed files with 27 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
$bottomMargin: 4vh;
.bottomSectionContent {
// background-color: green;
width: calc(100% - (2 * $bottomMargin));
margin: 0 $bottomMargin 0 $bottomMargin;
}