Skip to content

Commit 969d222

Browse files
authored
fix: Fix tailwind.css styles (#2620)
1 parent dad1614 commit 969d222

2 files changed

Lines changed: 9 additions & 4 deletions

File tree

.changeset/purple-parrots-beam.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"shadcn-svelte": patch
3+
---
4+
5+
fix: Fix `tailwind.css` styles

packages/cli/src/tailwind.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
height: 0;
55
}
66
to {
7-
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
7+
height: var(--bits-accordion-content-height, var(--accordion-panel-height, auto));
88
}
99
}
1010

1111
@keyframes accordion-up {
1212
from {
13-
height: var(--radix-accordion-content-height, var(--accordion-panel-height, auto));
13+
height: var(--bits-accordion-content-height, var(--accordion-panel-height, auto));
1414
}
1515
to {
1616
height: 0;
@@ -47,11 +47,11 @@
4747
}
4848
}
4949

50-
@custom-variant data-selected {
50+
/* @custom-variant data-selected {
5151
&:where([data-selected="true"]) {
5252
@slot;
5353
}
54-
}
54+
} */
5555

5656
@custom-variant data-disabled {
5757
&:where([data-disabled="true"]),

0 commit comments

Comments
 (0)