diff options
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/apps.scss | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index cb2cec662a4..fe8eb861708 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -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 */ |