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

refactor: remove cursor-hit in hiddenInputClasses #4474

Open
wants to merge 2 commits into
base: canary
Choose a base branch
from
Open
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/lazy-ants-exercise.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@nextui-org/theme": patch
---

refactor: remove cursor-hit in hiddenInputClasses (#4474)
6 changes: 1 addition & 5 deletions packages/core/theme/src/utils/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ export const collapseAdjacentVariantBorders = {
};

export const hiddenInputClasses = [
// Variables
"[--cursor-hit-x:8px]",

// Font styles
"font-inherit",
"text-[100%]",
Expand All @@ -88,8 +85,7 @@ export const hiddenInputClasses = [
// Positioning & Hit area
"absolute",
"top-0",
"start-[calc(var(--cursor-hit-x)*-1)]",
"w-[calc(100%+var(--cursor-hit-x)*2)]",
"w-full",
"h-full",

// Opacity and z-index
Expand Down
Loading