Merge pull request #900 from nextcloud/fix/895

Remove padding on content area for mobile
This commit is contained in:
Raimund Schlüßler 2020-03-07 09:49:21 +01:00 committed by GitHub
commit c65083398e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

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;
}
}