Skip to content

Commit a9765e6

Browse files
authored
Merge pull request #57086 from nextcloud/backport/57010/stable32
[stable32] fix(css): correct boundaries of breaking points
2 parents 2a96020 + 9764ee6 commit a9765e6

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;
@@ -715,7 +715,7 @@ body[dir='rtl'] {
715715
}
716716
}
717717

718-
@media only screen and (max-width: variables.$breakpoint-mobile) {
718+
@media only screen and (width < #{variables.$breakpoint-mobile}) {
719719
#content {
720720
border-start-start-radius: var(--border-radius-large);
721721
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)