fixed body padding for small devices

This commit is contained in:
WolverinDEV 2019-05-24 22:41:19 +02:00
parent 28695f3004
commit c14adff062

View file

@ -32,6 +32,10 @@ html, body {
$small_device: 650px; $small_device: 650px;
@media only screen and (max-width: $small_device) { @media only screen and (max-width: $small_device) {
html, body {
padding: 0!important;
}
.app-container { .app-container {
bottom: 25px; bottom: 25px;
} }