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

fix(calendar): scrolling is hidden when changing the month #2949

Merged
merged 2 commits into from
May 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
5 changes: 5 additions & 0 deletions .changeset/tough-carpets-marry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nextui-org/theme": patch
---

Removed scrolling display during month change animation (#2945)
2 changes: 1 addition & 1 deletion packages/core/theme/src/components/calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const calendar = tv({
prevButton: [],
nextButton: [],
headerWrapper: [
"px-4 py-2 flex items-center justify-between gap-2 bg-content1",
"px-4 py-2 flex items-center justify-between gap-2 bg-content1 overflow-hidden",
"[&_.chevron-icon]:flex-none",
// month/year picker wrapper
"after:content-['']",
Expand Down
Loading