Skip to content

Commit

Permalink
update stylelint-config-standard-scss as well
Browse files Browse the repository at this point in the history
  • Loading branch information
ashharrison90 committed Sep 6, 2023
1 parent 06c9055 commit 3b62f83
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 62 deletions.
106 changes: 49 additions & 57 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"style-loader": "^3.3.1",
"stylelint": "^15.10.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^6.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-scss": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
Expand Down
2 changes: 1 addition & 1 deletion styles/404.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
transform: translate(-50%, -50%);
z-index: 1;

@media screen and (min-width: 768px) {
@media screen and (width >= 768px) {
font-size: 12em;
}
}
4 changes: 2 additions & 2 deletions styles/Home.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,13 @@
font-size: 4em;
}

@media screen and (min-width: 768px) {
@media screen and (width >= 768px) {
h1 {
font-size: 5em;
}
}

@media screen and (min-width: 1024px) {
@media screen and (width >= 1024px) {
h1 {
font-size: 8em;
}
Expand Down
2 changes: 1 addition & 1 deletion styles/globals.scss
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ figcaption p {
margin: 0;
}

@media screen and (min-width: 768px) {
@media screen and (width >= 768px) {
h1 {
font-size: 4em;
}
Expand Down

0 comments on commit 3b62f83

Please sign in to comment.