Merge pull request #57010 from nextcloud/fix/breaking-points

fix(css): correct boundaries of breaking points
pull/57054/head
Ferdinand Thiessen 2025-12-12 21:38:21 +07:00 committed by GitHub
commit 0fe787558e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 6 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -7,7 +7,7 @@
@use 'sass:math';
@use 'functions';
@media screen and (max-width: variables.$breakpoint-mobile) {
@media screen and (width < #{variables.$breakpoint-mobile}) {
// Make the body full width on mobile
:root {
--body-container-margin: 0px !important;
@ -715,7 +715,7 @@ body[dir='rtl'] {
}
}
@media only screen and (max-width: variables.$breakpoint-mobile) {
@media only screen and (width < #{variables.$breakpoint-mobile}) {
#content {
border-start-start-radius: var(--border-radius-large);
border-start-end-radius: var(--border-radius-large);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long