hive-react-kit 0.4.3 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/build.css +13 -0
- package/dist/index.cjs.js +36 -36
- package/dist/index.esm.js +1073 -1092
- package/package.json +1 -1
package/dist/build.css
CHANGED
|
@@ -776,6 +776,13 @@
|
|
|
776
776
|
.rotate-180 {
|
|
777
777
|
rotate: 180deg;
|
|
778
778
|
}
|
|
779
|
+
.hover-lift {
|
|
780
|
+
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
781
|
+
&:hover {
|
|
782
|
+
transform: translateY(-2px);
|
|
783
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
|
|
784
|
+
}
|
|
785
|
+
}
|
|
779
786
|
.transform {
|
|
780
787
|
transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
|
|
781
788
|
}
|
|
@@ -1063,6 +1070,12 @@
|
|
|
1063
1070
|
.border-t-transparent {
|
|
1064
1071
|
border-top-color: transparent;
|
|
1065
1072
|
}
|
|
1073
|
+
.glass-effect {
|
|
1074
|
+
backdrop-filter: blur(12px);
|
|
1075
|
+
-webkit-backdrop-filter: blur(12px);
|
|
1076
|
+
background-color: rgba(255, 255, 255, 0.04);
|
|
1077
|
+
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
1078
|
+
}
|
|
1066
1079
|
.bg-amber-500\/20 {
|
|
1067
1080
|
background-color: color-mix(in srgb, oklch(76.9% 0.188 70.08) 20%, transparent);
|
|
1068
1081
|
@supports (color: color-mix(in lab, red, red)) {
|