Skip to content

Commit

Permalink
CSS lint (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
arty-name authored Aug 29, 2023
1 parent 8ea107d commit 5468aa1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test-size": "bundlewatch --config bundlewatch.config.json",
"lint": "yarn run lint-css --formatter github && yarn run lint-js",
"lint-js": "eslint --max-warnings 0 --config ./.eslintrc.json \"src/**/*.ts*\"",
"lint-css": "stylelint --max-warnings 0 --fix \"src/**/*.css\"",
"lint-css": "stylelint --max-warnings 0 \"src/**/*.css\"",
"css": "tcm --pattern 'src/**/*.module.css' && eslint --fix --config ./.eslintrc.json \"src/**/*.css.d.ts\"",
"prettify": "prettier --write \"src/**/*.ts*\" \"src/**/*.css*\""
},
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ClaimW3Name/ClaimW3Name.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
cursor: not-allowed;
}

@media (max-width: 420px) {
@media (width <= 420px) {
.btn {
font-size: 12px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ClaimingGuide/ClaimingGuide.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
font-size: 16px;
}

@media (max-width: 580px) {
@media (width <= 580px) {
.linkTextSmall {
margin-left: 40px;
}
Expand Down
6 changes: 3 additions & 3 deletions src/Components/Footer/Footer.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
font-size: 14px;
}

@media (max-width: 700px) {
@media (width <= 700px) {
.content {
flex-direction: column;
width: 100%;
Expand All @@ -30,7 +30,7 @@
gap: 10px;
}

@media (max-width: 700px) {
@media (width <= 700px) {
.navMenu {
width: 100%;
display: flex;
Expand Down Expand Up @@ -66,7 +66,7 @@
right/25%;
}

@media (max-width: 700px) {
@media (width <= 700px) {
.copyright {
margin: 0 0 7px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Components/InfoIcon/InfoIcon.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
top: 20px;
}

@media (max-width: 480px) {
@media (width <= 480px) {
.wrapper {
width: 200px;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Components/ServiceEndpoint/ServiceEndpoint.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
padding: 13px 18px;
}

@media (max-width: 700px) {
@media (width <= 700px) {
.endpoint {
flex-direction: column;
gap: 10px;
Expand Down

0 comments on commit 5468aa1

Please sign in to comment.