Skip to content

Commit

Permalink
fix css/scss
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxymGorn committed Aug 3, 2024
1 parent 9173c84 commit 5535452
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/linters/.stylelintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "stylelint-config-standard",
"extends": [ "stylelint-config-standard", "stylelint-config-standard-scss" ],
"rules": {
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["function", "if", "each", "include", "mixin"]
Expand Down
2 changes: 1 addition & 1 deletion src/Cropper.Blazor/Client/Pages/CropperDemo.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
min-height: 200px;
}

@media (width >= 768px) {
@media (min-width: 768px) {
.img-container {
min-height: 573px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Cropper.Blazor/Client/Styles/layout/_mainlayout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
font-family: 'Public Sans', Roboto, Arial, sans-serif;
font-weight: 500;
line-height: 1.75;
letter-spacing: 0.02857em;
letter-spacing: 0.0286em;
text-transform: none;
}
}
Expand Down

0 comments on commit 5535452

Please sign in to comment.