Remove padding on content area for mobile

Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
This commit is contained in:
Raimund Schlüßler 2020-03-07 09:16:20 +01:00
parent 082e72ec2c
commit 132229c430
No known key found for this signature in database
GPG key ID: 036FA7EB1A599178

View file

@ -1313,3 +1313,9 @@ input[type='checkbox'].checkbox {
padding-top: 10px;
}
}
@media only screen and (max-width: $breakpoint-mobile) {
#app-content > div {
padding: 6px 0 75px;
}
}