Skip to content

Commit e10492f

Browse files
committed
fix font-family-no-duplicate-names manually
1 parent 0ba7c45 commit e10492f

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.stylelintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ module.exports = {
4242
'declaration-block-no-redundant-longhand-properties': null, // 12 errors
4343
'value-no-vendor-prefix': null, // 9 errors
4444
'font-family-no-missing-generic-family-keyword': null, // 8 errors
45-
'font-family-no-duplicate-names': null, // 2 errors
4645
'function-linear-gradient-no-nonstandard-direction': null, // 1 error
4746
'at-rule-no-vendor-prefix': null, // 1 error
4847
},

src/themes/default/globals/reset.overrides

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ hr {
6262
*/
6363

6464
pre {
65-
font-family: monospace, monospace; /* 1 */
65+
font-family: monospace; /* 1 */
6666
font-size: 1em; /* 2 */
6767
}
6868

@@ -105,7 +105,7 @@ strong {
105105
code,
106106
kbd,
107107
samp {
108-
font-family: monospace, monospace; /* 1 */
108+
font-family: monospace; /* 1 */
109109
font-size: 1em; /* 2 */
110110
}
111111

0 commit comments

Comments
 (0)