Skip to content

Commit 85099ac

Browse files
committed
chore(deps): update other deps
1 parent 01f007f commit 85099ac

5 files changed

Lines changed: 881 additions & 1445 deletions

File tree

app/globals.css

Lines changed: 84 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,87 @@
1-
@tailwind base;
2-
@tailwind components;
3-
@tailwind utilities;
1+
@import 'tailwindcss';
2+
@import 'tw-animate-css';
3+
4+
@custom-variant dark (&:is(.dark *));
5+
6+
@utility container {
7+
margin-inline: auto;
8+
padding-inline: 2rem;
9+
@media (width >= --theme(--breakpoint-sm)) {
10+
max-width: none;
11+
}
12+
@media (width >= 1400px) {
13+
max-width: 1400px;
14+
}
15+
}
16+
17+
@theme {
18+
--color-border: hsl(var(--border));
19+
--color-input: hsl(var(--input));
20+
--color-ring: hsl(var(--ring));
21+
--color-background: hsl(var(--background));
22+
--color-foreground: hsl(var(--foreground));
23+
24+
--color-primary: hsl(var(--primary));
25+
--color-primary-foreground: hsl(var(--primary-foreground));
26+
27+
--color-secondary: hsl(var(--secondary));
28+
--color-secondary-foreground: hsl(var(--secondary-foreground));
29+
30+
--color-destructive: hsl(var(--destructive));
31+
--color-destructive-foreground: hsl(var(--destructive-foreground));
32+
33+
--color-muted: hsl(var(--muted));
34+
--color-muted-foreground: hsl(var(--muted-foreground));
35+
36+
--color-accent: hsl(var(--accent));
37+
--color-accent-foreground: hsl(var(--accent-foreground));
38+
39+
--color-popover: hsl(var(--popover));
40+
--color-popover-foreground: hsl(var(--popover-foreground));
41+
42+
--color-card: hsl(var(--card));
43+
--color-card-foreground: hsl(var(--card-foreground));
44+
45+
--color-chart-1: hsl(var(--chart-1));
46+
--color-chart-2: hsl(var(--chart-2));
47+
--color-chart-3: hsl(var(--chart-3));
48+
--color-chart-4: hsl(var(--chart-4));
49+
--color-chart-5: hsl(var(--chart-5));
50+
51+
--radius-lg: var(--radius);
52+
--radius-md: calc(var(--radius) - 2px);
53+
--radius-sm: calc(var(--radius) - 4px);
54+
55+
--animate-accordion-down: accordion-down 0.2s ease-out;
56+
--animate-accordion-up: accordion-up 0.2s ease-out;
57+
58+
@keyframes accordion-down {
59+
from {
60+
height: 0;
61+
}
62+
to {
63+
height: var(--radix-accordion-content-height);
64+
}
65+
}
66+
@keyframes accordion-up {
67+
from {
68+
height: var(--radix-accordion-content-height);
69+
}
70+
to {
71+
height: 0;
72+
}
73+
}
74+
}
75+
76+
@layer base {
77+
*,
78+
::after,
79+
::before,
80+
::backdrop,
81+
::file-selector-button {
82+
border-color: var(--color-gray-200, currentcolor);
83+
}
84+
}
485

586
@layer base {
687
:root {

0 commit comments

Comments
 (0)