Skip to content

Commit 080c4e3

Browse files
committed
fix: Update CSS to use Tailwind v4 import syntax
Signed-off-by: Mr Sumo <[email protected]>
1 parent 338b260 commit 080c4e3

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

app/globals.css

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import "tailwindcss";
42

53
:root {
64
--background: #ffffff;
75
--foreground: #171717;
8-
--font-lato: 'Lato', sans-serif;
9-
--font-inconsolata: 'Inconsolata', monospace;
10-
--font-montserrat: 'Montserrat', sans-serif;
6+
--font-lato: "Lato", sans-serif;
7+
--font-inconsolata: "Inconsolata", monospace;
8+
--font-montserrat: "Montserrat", sans-serif;
119
}
1210

1311
* {
@@ -34,15 +32,9 @@ html {
3432
}
3533

3634
::-webkit-scrollbar-track {
37-
background-color: #FFFFFF;
35+
background-color: #ffffff;
3836
}
3937

4038
::-webkit-scrollbar-thumb {
41-
background-color: #00163D;
42-
}
43-
44-
@layer utilities {
45-
.text-balance {
46-
text-wrap: balance;
47-
}
39+
background-color: #00163d;
4840
}

0 commit comments

Comments
 (0)