diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-08-27 10:54:27 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-09-01 14:15:40 +0200 |
commit | d5c7a3aff41294d0f16f40afb8b9e21a24bd763c (patch) | |
tree | 9d811e90e3f0a2bae34c519ce90b52e6242a1877 /core/css | |
parent | ac134f5f47f9c5ef09194e674b990f0ec491541b (diff) | |
download | nextcloud-server-d5c7a3aff41294d0f16f40afb8b9e21a24bd763c.tar.gz nextcloud-server-d5c7a3aff41294d0f16f40afb8b9e21a24bd763c.zip |
Small top border radius on mobile
Signed-off-by: Julius Härtl <jus@bitgrid.net>
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 */ |