mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #57087 from nextcloud/backport/57010/stable31
[stable31] fix(css): correct boundaries of breaking points
This commit is contained in:
commit
aaa42a443e
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
|
|
@ -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
Loading…
Reference in a new issue