Skip to content

Commit aaa42a4

Browse files
authored
Merge pull request #57087 from nextcloud/backport/57010/stable31
[stable31] fix(css): correct boundaries of breaking points
2 parents 49d842b + fe32b69 commit aaa42a4

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

core/css/apps.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/apps.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/css/apps.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
@use 'sass:math';
88
@use 'functions';
99

10-
@media screen and (max-width: variables.$breakpoint-mobile) {
10+
@media screen and (width < #{variables.$breakpoint-mobile}) {
1111
// Make the body full width on mobile
1212
:root {
1313
--body-container-margin: 0px !important;
@@ -711,7 +711,7 @@ body[dir='rtl'] {
711711
}
712712
}
713713

714-
@media only screen and (max-width: variables.$breakpoint-mobile) {
714+
@media only screen and (width < #{variables.$breakpoint-mobile}) {
715715
#content {
716716
border-start-start-radius: var(--border-radius-large);
717717
border-start-end-radius: var(--border-radius-large);

core/css/server.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)