@nine-lab/nine-ux 0.1.200 → 0.1.202
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/css/ninePanel.css
CHANGED
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
display: flex;
|
|
103
103
|
--flex: 1 1 0;
|
|
104
104
|
width: 100%;
|
|
105
|
-
gap:
|
|
105
|
+
gap: 16px;
|
|
106
106
|
overflow: hidden;
|
|
107
107
|
--height: 32px;
|
|
108
108
|
|
|
@@ -110,6 +110,9 @@
|
|
|
110
110
|
width: fit-content;
|
|
111
111
|
display: block;
|
|
112
112
|
flex-shrink: 0;
|
|
113
|
+
max-width: 100%; /* 🎯 화면이 극단적으로 좁아지면 부모 크기에 맞춰 줄어듦 */
|
|
114
|
+
min-width: 0; /* 🎯 flex item이 유연하게 수축할 수 있도록 최소 너비 제한을 해제 */
|
|
115
|
+
box-sizing: border-box;
|
|
113
116
|
}
|
|
114
117
|
}
|
|
115
118
|
|
|
@@ -117,6 +120,7 @@
|
|
|
117
120
|
display: flex;
|
|
118
121
|
flex: 1 1 0;
|
|
119
122
|
align-items: center;
|
|
123
|
+
gap: 4px;
|
|
120
124
|
}
|
|
121
125
|
|
|
122
126
|
.row * {
|