Skip to content

Commit bca597a

Browse files
Enable Biome on CSS files again
1 parent 2db04f9 commit bca597a

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ on:
44
branches:
55
- main
66
pull_request:
7-
types: [opened, synchronize, reopened]
8-
workflow_dispatch:
97
concurrency:
108
group: ${{ github.ref }}
119
cancel-in-progress: true

biome.jsonc

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,5 @@
6666
"clientKind": "git",
6767
"useIgnoreFile": true,
6868
"defaultBranch": "main"
69-
},
70-
"files": {
71-
// Biome can't parse syntax from Tailwind CSS like `--alpha(--value(--color-*, [color])`
72-
"ignore": ["**/*.css"]
7369
}
7470
}

site/src/app/styles.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@
275275

276276
@utility scrollbar-thumb-* {
277277
--scrollbar-thumb-alpha: calc(--modifier(integer) * 1%);
278-
--scrollbar-thumb: --alpha(--value(--color-*, [color]) / var(--scrollbar-thumb-alpha, 100%));
278+
--scrollbar-thumb: --alpha(--value(--color-\*, [color]) / var(--scrollbar-thumb-alpha, 100%));
279279

280280
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track, transparent);
281281

@@ -287,7 +287,7 @@
287287

288288
@utility scrollbar-track-* {
289289
--scrollbar-track-alpha: calc(--modifier(integer) * 1%);
290-
--scrollbar-track: --alpha(--value(--color-*, [color]) / var(--scrollbar-track-alpha, 100%));
290+
--scrollbar-track: --alpha(--value(--color-\*, [color]) / var(--scrollbar-track-alpha, 100%));
291291

292292
scrollbar-color: var(
293293
--scrollbar-thumb,

0 commit comments

Comments
 (0)