Skip to content

Commit

Permalink
fix(theme): add missing shadow none (#4587)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingkwong authored Jan 18, 2025
1 parent 2036878 commit f7e5d20
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/stale-bears-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@heroui/theme": patch
---

add missing shadow none (#4586)
3 changes: 3 additions & 0 deletions packages/core/theme/src/components/modal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,9 @@ const modal = tv({
},
},
shadow: {
none: {
base: "shadow-none",
},
sm: {
base: "shadow-small",
},
Expand Down
3 changes: 3 additions & 0 deletions packages/core/theme/src/components/popover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ const popover = tv({
full: {content: "rounded-full"},
},
shadow: {
none: {
content: "shadow-none",
},
sm: {
content: "shadow-small",
},
Expand Down

0 comments on commit f7e5d20

Please sign in to comment.