Skip to content

Commit 29c3952

Browse files
extract events to a different component
1 parent 46be2a0 commit 29c3952

File tree

7 files changed

+640
-806
lines changed

7 files changed

+640
-806
lines changed

app/globals.css

Lines changed: 54 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -14,63 +14,63 @@ body {
1414

1515
@layer base {
1616
:root {
17-
--background: 0 0% 100%;
18-
--foreground: 0 0% 3.9%;
19-
--card: 0 0% 100%;
20-
--card-foreground: 0 0% 3.9%;
21-
--popover: 0 0% 100%;
22-
--popover-foreground: 0 0% 3.9%;
23-
--primary: 0 0% 9%;
24-
--primary-foreground: 0 0% 98%;
25-
--secondary: 0 0% 96.1%;
26-
--secondary-foreground: 0 0% 9%;
27-
--muted: 0 0% 96.1%;
28-
--muted-foreground: 0 0% 45.1%;
29-
--accent: 0 0% 96.1%;
30-
--accent-foreground: 0 0% 9%;
31-
--destructive: 0 84.2% 60.2%;
32-
--destructive-foreground: 0 0% 98%;
33-
--border: 0 0% 89.8%;
34-
--input: 0 0% 89.8%;
35-
--ring: 0 0% 3.9%;
17+
--background: hsl(0 0% 100%);
18+
--foreground: hsl(0 0% 3.9%);
19+
--card: hsl(0 0% 100%);
20+
--card-foreground: hsl(0 0% 3.9%);
21+
--popover: hsl(0 0% 100%);
22+
--popover-foreground: hsl(0 0% 3.9%);
23+
--primary: hsl(0 0% 9%);
24+
--primary-foreground: hsl(0 0% 98%);
25+
--secondary: hsl(0 0% 96.1%);
26+
--secondary-foreground: hsl(0 0% 9%);
27+
--muted: hsl(0 0% 96.1%);
28+
--muted-foreground: hsl(0 0% 45.1%);
29+
--accent:hsl(0 0% 96.1%);
30+
--accent-foreground: hsl(0 0% 9%);
31+
--destructive: hsl(0 84.2% 60.2%);
32+
--destructive-foreground: hsl(0 0% 98%);
33+
--border: hsl(0 0% 89.8%);
34+
--input: hsl(0 0% 89.8%);
35+
--ring: hsl(0 0% 3.9%);
3636
--radius: 0.5rem;
37-
--sidebar-background: 0 0% 98%;
38-
--sidebar-foreground: 240 5.3% 26.1%;
39-
--sidebar-primary: 240 5.9% 10%;
40-
--sidebar-primary-foreground: 0 0% 98%;
41-
--sidebar-accent: 240 4.8% 95.9%;
42-
--sidebar-accent-foreground: 240 5.9% 10%;
43-
--sidebar-border: 220 13% 91%;
44-
--sidebar-ring: 217.2 91.2% 59.8%;
37+
--sidebar-background: hsl(0 0% 98%);
38+
--sidebar-foreground: hsl(240 5.3% 26.1%);
39+
--sidebar-primary: hsl(240 5.9% 10%);
40+
--sidebar-primary-foreground: hsl(0 0% 98%);
41+
--sidebar-accent: hsl(240 4.8% 95.9%);
42+
--sidebar-accent-foreground: hsl(240 5.9% 10%);
43+
--sidebar-border: hsl(220 13% 91%);
44+
--sidebar-ring: hsl(217.2 91.2% 59.8%);
4545
}
4646
.dark {
47-
--background: 0 0% 3.9%;
48-
--foreground: 0 0% 98%;
49-
--card: 0 0% 3.9%;
50-
--card-foreground: 0 0% 98%;
51-
--popover: 0 0% 3.9%;
52-
--popover-foreground: 0 0% 98%;
53-
--primary: 0 0% 98%;
54-
--primary-foreground: 0 0% 9%;
55-
--secondary: 0 0% 14.9%;
56-
--secondary-foreground: 0 0% 98%;
57-
--muted: 0 0% 14.9%;
58-
--muted-foreground: 0 0% 63.9%;
59-
--accent: 0 0% 14.9%;
60-
--accent-foreground: 0 0% 98%;
61-
--destructive: 0 62.8% 30.6%;
62-
--destructive-foreground: 0 0% 98%;
63-
--border: 0 0% 14.9%;
64-
--input: 0 0% 14.9%;
65-
--ring: 0 0% 83.1%;
66-
--sidebar-background: 240 5.9% 10%;
67-
--sidebar-foreground: 240 4.8% 95.9%;
68-
--sidebar-primary: 224.3 76.3% 48%;
69-
--sidebar-primary-foreground: 0 0% 100%;
70-
--sidebar-accent: 240 3.7% 15.9%;
71-
--sidebar-accent-foreground: 240 4.8% 95.9%;
72-
--sidebar-border: 240 3.7% 15.9%;
73-
--sidebar-ring: 217.2 91.2% 59.8%;
47+
--background: hsl(0 0% 3.9%);
48+
--foreground: hsl(0 0% 98%);
49+
--card: hsl(0 0% 3.9%);
50+
--card-foreground: hsl(0 0% 98%);
51+
--popover: hsl(0 0% 3.9%);
52+
--popover-foreground: hsl(0 0% 98%);
53+
--primary: hsl(0 0% 98%);
54+
--primary-foreground: hsl(0 0% 9%);
55+
--secondary: hsl(0 0% 14.9%);
56+
--secondary-foreground: hsl(0 0% 98%);
57+
--muted: hsl(0 0% 14.9%);
58+
--muted-foreground: hsl(0 0% 63.9%);
59+
--accent: hsl(0 0% 14.9%);
60+
--accent-foreground: hsl(0 0% 98%);
61+
--destructive: hsl(0 62.8% 30.6%);
62+
--destructive-foreground: hsl(0 0% 98%);
63+
--border: hsl(0 0% 14.9%);
64+
--input: hsl(0 0% 14.9%);
65+
--ring: hsl(0 0% 83.1%);
66+
--sidebar-background: hsl(240 5.9% 10%);
67+
--sidebar-foreground: hsl(240 4.8% 95.9%);
68+
--sidebar-primary: hsl(224.3 76.3% 48%);
69+
--sidebar-primary-foreground: hsl(0 0% 100%);
70+
--sidebar-accent: hsl(240 3.7% 15.9%);
71+
--sidebar-accent-foreground: hsl(240 4.8% 95.9%);
72+
--sidebar-border: hsl(240 3.7% 15.9%);
73+
--sidebar-ring: hsl(217.2 91.2% 59.8%);
7474
}
7575
}
7676

0 commit comments

Comments
 (0)