We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7402e00 commit a1cc378Copy full SHA for a1cc378
.changeset/lazy-ants-exercise.md
@@ -0,0 +1,5 @@
1
+---
2
+"@heroui/theme": patch
3
4
+
5
+refactor: remove cursor-hit in hiddenInputClasses (#4474)
packages/core/theme/src/utils/classes.ts
@@ -69,9 +69,6 @@ export const collapseAdjacentVariantBorders = {
69
};
70
71
export const hiddenInputClasses = [
72
- // Variables
73
- "[--cursor-hit-x:8px]",
74
-
75
// Font styles
76
"font-inherit",
77
"text-[100%]",
@@ -88,8 +85,7 @@ export const hiddenInputClasses = [
88
85
// Positioning & Hit area
89
86
"absolute",
90
87
"top-0",
91
- "start-[calc(var(--cursor-hit-x)*-1)]",
92
- "w-[calc(100%+var(--cursor-hit-x)*2)]",
+ "w-full",
93
"h-full",
94
95
// Opacity and z-index
0 commit comments