Merge pull request #57087 from nextcloud/backport/57010/stable31

[stable31] fix(css): correct boundaries of breaking points
This commit is contained in:
Ferdinand Thiessen 2025-12-16 15:31:04 +01:00 committed by GitHub
commit aaa42a443e
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

View file

@ -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;
@ -711,7 +711,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