AlexMia commited on
Commit
740132f
·
verified ·
1 Parent(s): 9477677

Update src/app/globals.css

Browse files
Files changed (1) hide show
  1. src/app/globals.css +27 -25
src/app/globals.css CHANGED
@@ -1,25 +1,27 @@
1
- @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities;
4
-
5
- :root {
6
- --foreground-rgb: 0, 0, 0;
7
- --background-start-rgb: 255, 255, 255;
8
- --background-end-rgb: 255, 255, 255;
9
- }
10
-
11
- body {
12
- color: rgb(var(--foreground-rgb));
13
- background: linear-gradient(
14
- to bottom,
15
- transparent,
16
- rgb(var(--background-end-rgb))
17
- )
18
- rgb(var(--background-start-rgb));
19
- }
20
-
21
- @layer utilities {
22
- .text-balance {
23
- text-wrap: balance;
24
- }
25
- }
 
 
 
1
+ @import "tailwindcss";
2
+ @plugin "daisyui";
3
+ @tailwind base;
4
+ @tailwind components;
5
+ @tailwind utilities;
6
+
7
+ :root {
8
+ --foreground-rgb: 0, 0, 0;
9
+ --background-start-rgb: 255, 255, 255;
10
+ --background-end-rgb: 255, 255, 255;
11
+ }
12
+
13
+ body {
14
+ color: rgb(var(--foreground-rgb));
15
+ background: linear-gradient(
16
+ to bottom,
17
+ transparent,
18
+ rgb(var(--background-end-rgb))
19
+ )
20
+ rgb(var(--background-start-rgb));
21
+ }
22
+
23
+ @layer utilities {
24
+ .text-balance {
25
+ text-wrap: balance;
26
+ }
27
+ }