Skip to content

Commit 6424aa3

Browse files
committed
:)
1 parent 4b7aca2 commit 6424aa3

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

site/package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,7 @@
185185
"vite-plugin-checker": "0.9.3",
186186
"vite-plugin-turbosnap": "1.0.3"
187187
},
188-
"browserslist": [
189-
"chrome 110",
190-
"firefox 111",
191-
"safari 16.0"
192-
],
188+
"browserslist": ["chrome 110", "firefox 111", "safari 16.0"],
193189
"resolutions": {
194190
"optionator": "0.9.3",
195191
"semver": "7.6.2"

site/src/index.css

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Related issue: https://github.com/shadcn-ui/ui/issues/805#issuecomment-1616021820
44
*/
55

6-
@import 'tailwindcss';
6+
@import "tailwindcss";
77

88
@config '../tailwind.config.js';
99

@@ -16,13 +16,13 @@
1616
color utility to any element that depends on these defaults.
1717
*/
1818
@layer base {
19-
*,
20-
::after,
21-
::before,
22-
::backdrop,
23-
::file-selector-button {
24-
border-color: var(--color-gray-200, currentcolor);
25-
}
19+
*,
20+
::after,
21+
::before,
22+
::backdrop,
23+
::file-selector-button {
24+
border-color: var(--color-gray-200, currentcolor);
25+
}
2626
}
2727

2828
@layer base {

site/vite.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import * as path from "node:path";
2+
import tailwindPlugin from "@tailwindcss/vite";
23
import reactPlugin from "@vitejs/plugin-react";
34
import { visualizer } from "rollup-plugin-visualizer";
45
import { type PluginOption, defineConfig } from "vite";
56
import checker from "vite-plugin-checker";
6-
import tailwindPlugin from "@tailwindcss/vite";
77

88
const plugins: PluginOption[] = [
99
reactPlugin(),

0 commit comments

Comments
 (0)