Skip to content

Commit

Permalink
Fix compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
ColdForeign committed Aug 2, 2024
1 parent af018fc commit 23fd5a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/linters/.stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"ignorePseudoElements": [ "deep" ]
}
],
"indentation": 4
"indentation": 4,
"media-feature-range-notation": "prefix"
}
}
4 changes: 2 additions & 2 deletions src/Cropper.Blazor/Client/Styles/layout/_mainlayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
margin: 0 4px;
}

@media (width <= 600px) {
@media (max-width: 600px) {
.docs-title {
font-size: 2.5rem;
}
Expand Down Expand Up @@ -92,7 +92,7 @@
}
}

@media (width <= 960px) {
@media (max-width: 960px) {
:root {
--mud-drawer-width-left: 300px !important;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@media (width >= 0) and (width <= 510px) {
@media (min-width: 0) and (max-width: 510px) {
.mud-snackbar-location-bottom-right {
right: 0 !important;
}
Expand Down

0 comments on commit 23fd5a7

Please sign in to comment.