Skip to content

Commit 038924a

Browse files
authored
Merge pull request #36764 from nextcloud/backport/36751/stable25
[stable25] Don't regard 1024px width viewport as mobile
2 parents b0c0217 + 9cf7ed4 commit 038924a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/css/mobile.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/mobile.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@use 'variables';
22

3-
@media only screen and (max-width: variables.$breakpoint-mobile) {
3+
@media only screen and (width < variables.$breakpoint-mobile) {
44

55
/* position share dropdown */
66
#dropdown {

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)