Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support tailwindcss v4 #4656

Draft
wants to merge 20 commits into
base: canary
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: variant shadow issues
  • Loading branch information
winchesHe committed Jan 28, 2025
commit 4e0a2d6e57a5103a326093d54bd2416038fe48f8
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ const CustomThemesExample = ({
<Button
className={slots.buyButton()}
color="primary"
variant={selectedTheme === "heroui" ? "shadow-sm" : "solid"}
variant={selectedTheme === "heroui" ? "shadow" : "solid"}
>
Buy now
</Button>
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/components/accordion.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ If you set `isCompact` to `true`, the `Accordion` will be displayed in a compact

### Variants

Accordion has 4 variants: `light`, `shadow-sm`, `bordered` and `splitted`.
Accordion has 4 variants: `light`, `shadow`, `bordered` and `splitted`.

#### Light variant

Expand Down
Loading