Skip to content

Commit e5d9d0c

Browse files
committed
fix bundling
1 parent 8eda686 commit e5d9d0c

5 files changed

Lines changed: 470 additions & 7 deletions

File tree

app/frontend/components/ui/badge.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ const badgeVariants = cva(
1313
secondary: 'bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90',
1414
destructive:
1515
'bg-destructive text-white focus-visible:ring-destructive/20 dark:bg-destructive/60 dark:focus-visible:ring-destructive/40 [a&]:hover:bg-destructive/90',
16-
outline:
17-
'border-border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
16+
outline: 'border text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
1817
ghost: '[a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
1918
link: 'text-primary underline-offset-4 [a&]:hover:underline',
2019
},

app/frontend/entrypoints/_base.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
@layer base {
22
* {
3-
@apply border-border outline-ring/50;
3+
border-color: var(--border);
44
}
55
body {
6-
@apply bg-background text-foreground;
6+
background-color: var(--background);
7+
color: var(--foreground);
78
}
8-
}
9+
html {
10+
font-family: var(--font-sans);
11+
}
12+
}

app/frontend/entrypoints/application.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@
126126

127127
@layer base {
128128
* {
129-
@apply border-border outline-ring/50;
129+
@apply outline-ring/50;
130130
}
131131
body {
132132
@apply bg-background text-foreground;
133133
}
134134
html {
135135
@apply font-sans;
136136
}
137-
}
137+
}

0 commit comments

Comments
 (0)