Skip to content

Commit 0c47e5f

Browse files
committed
fix: resolve stylelint errors
1 parent 704cd45 commit 0c47e5f

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

apps/solidjs-boilerplate/src/styles/globals.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@import url('base/settings.css') layer(base);
22
@import url('base/svg.css') layer(base);
33
@import url('libs/hiding-header.css') layer(base);
4-
4+
/* stylelint-disable-next-line import-notation */
55
@import 'tailwindcss';
66

77
@theme {
@@ -21,7 +21,6 @@
2121
--text-8xl: 96px;
2222
--text-9xl: 128px;
2323
}
24-
2524
/*
2625
The default border color has changed to `currentcolor` in Tailwind CSS v4,
2726
so we've added these compatibility styles to make sure everything still
@@ -46,7 +45,6 @@
4645
4746
} */
4847
}
49-
5048
/* @ https://tailwindcss.jp/docs/functions-and-directives#layer */
5149
@layer base {
5250
html {

apps/solidjs-boilerplate/stylelint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const config = {
3535
},
3636
],
3737
'custom-media-pattern': '^([a-z][a-z0-9]*)(-[a-z0-9]+)*$',
38-
'custom-property-pattern': '^([a-z][a-z0-9]*)(-[a-z0-9]+)*$',
38+
'custom-property-pattern': '^([a-z][a-z0-9]*)(-[a-z0-9]+)*(-\\*)?$',
3939
'comment-empty-line-before': 'never',
4040
'declaration-block-no-duplicate-properties': [
4141
true,

0 commit comments

Comments
 (0)