Skip to content

Commit 1997376

Browse files
refactor: reorder #alert styles to remove rule from stylelint config
1 parent 2cfa810 commit 1997376

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

remote.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -207,16 +207,6 @@ a {
207207
background-color: #000;
208208
}
209209

210-
#alert input {
211-
box-sizing: border-box;
212-
width: 100%;
213-
}
214-
215-
#alert textarea {
216-
box-sizing: border-box;
217-
width: 100%;
218-
}
219-
220210
input,
221211
select,
222212
textarea {
@@ -245,6 +235,16 @@ input:focus.input-error {
245235
border: 2px solid #f44;
246236
}
247237

238+
#alert input {
239+
box-sizing: border-box;
240+
width: 100%;
241+
}
242+
243+
#alert textarea {
244+
box-sizing: border-box;
245+
width: 100%;
246+
}
247+
248248
.config-label {
249249
display: flex;
250250
flex-wrap: wrap;

stylelint.config.mjs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
const config = {
22
"extends": ["stylelint-config-standard", "stylelint-prettier/recommended"],
33
"root": true,
4-
"rules": {
5-
"no-descending-specificity": null
6-
}
4+
"rules": {}
75
};
86

97
export default config;

0 commit comments

Comments
 (0)