Prevent container overflows

merge-requests/8/head
Bob Mottram 2020-10-28 13:33:05 +00:00
parent c6aa2694ad
commit 68a85e64a8
1 changed files with 6 additions and 2 deletions

View File

@ -1003,6 +1003,10 @@ div.containerHeader {
overflow: auto;
}
div.container {
overflow: hidden;
}
@media screen and (min-width: 400px) {
body, html {
background-color: var(--main-bg-color);