@nine-lab/nine-ux 0.1.192 → 0.1.194
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.
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
cursor: pointer;
|
|
7
7
|
z-index: 999;
|
|
8
8
|
height: 20px;
|
|
9
|
-
width:
|
|
9
|
+
width: fit-content;
|
|
10
|
+
min-width: 20px; /* 최소 너비 방어선만 구축 */
|
|
11
|
+
background-color: transparent;
|
|
10
12
|
|
|
11
13
|
&:host(.nx-expand) {
|
|
12
14
|
display: inline-block;
|
|
@@ -26,7 +28,7 @@
|
|
|
26
28
|
user-select: none;
|
|
27
29
|
border-bottom-left-radius: 8px;
|
|
28
30
|
border-bottom-right-radius: 8px;
|
|
29
|
-
background-color:
|
|
31
|
+
background-color: transparent;
|
|
30
32
|
height: 100%;
|
|
31
33
|
width: 100%;
|
|
32
34
|
background-repeat: no-repeat;
|
|
@@ -36,12 +38,12 @@
|
|
|
36
38
|
transition: all 0.3s ease;
|
|
37
39
|
}
|
|
38
40
|
button:hover {
|
|
39
|
-
|
|
40
|
-
box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* 입체감 glow */
|
|
41
|
-
transform: scale(1.05); /* 약간 확대 */
|
|
41
|
+
transform: scale(1.2);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
|
|
46
|
+
|
|
45
47
|
@keyframes bounceInUp {
|
|
46
48
|
0% {
|
|
47
49
|
transform: translateY(0);
|
|
@@ -53,8 +55,6 @@
|
|
|
53
55
|
}
|
|
54
56
|
}
|
|
55
57
|
|
|
56
|
-
|
|
57
|
-
|
|
58
58
|
@keyframes bounceDown {
|
|
59
59
|
0% {
|
|
60
60
|
transform: translateY(-20px);
|
|
@@ -65,6 +65,3 @@
|
|
|
65
65
|
opacity: 1;
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|