Skip to content

Commit

Permalink
[CHANGE] Stylelint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ppfeufer committed Aug 24, 2023
1 parent 107700a commit 1347b50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"color-no-hex": true,
"number-max-precision": 5,
"no-descending-specificity": null,
"media-feature-range-notation": "context",
"selector-class-pattern": "_?[a-z0-9]+(-[a-z0-9]+)*$",
"selector-id-pattern": "_?[a-z0-9]+(-[a-z0-9]+)*$",
"selector-type-case": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}
}

@media all and (min-width: 768px) {
@media all and (width >= 768px) {
#site-body-wrapper.row {
margin-left: -15px;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
@media all{#site-body-wrapper.row{margin-left:0}}@media all and (min-width:768px){#site-body-wrapper.row{margin-left:-15px}}
@media all{#site-body-wrapper.row{margin-left:0}}

0 comments on commit 1347b50

Please sign in to comment.