Small top border radius on mobile

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2022-08-27 10:54:27 +02:00
parent ac134f5f47
commit d5c7a3aff4
No known key found for this signature in database
GPG key ID: 4C614C6ED2CDE6DF

View file

@ -657,6 +657,19 @@ kbd {
}
}
@media only screen and (max-width: variables.$breakpoint-mobile) {
#content {
border-top-left-radius: var(--border-radius-large);
border-top-right-radius: var(--border-radius-large);
}
#app-navigation {
border-top-left-radius: var(--border-radius-large);
}
#app-sidebar {
border-top-right-radius: var(--border-radius-large);
}
}
/* APP-CONTENT AND WRAPPER ------------------------------------------ */
/* Part where the content will be loaded into */