Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions core/css/apps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -715,7 +715,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);
Expand Down
Loading