Skip to content

Commit

Permalink
Merge pull request #36764 from nextcloud/backport/36751/stable25
Browse files Browse the repository at this point in the history
[stable25] Don't regard 1024px width viewport as mobile
  • Loading branch information
szaimen authored Feb 27, 2023
2 parents b0c0217 + 9cf7ed4 commit 038924a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/css/mobile.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/css/mobile.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@use 'variables';

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

/* position share dropdown */
#dropdown {
Expand Down
2 changes: 1 addition & 1 deletion core/css/server.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 038924a

Please sign in to comment.