voiptime-components 1.21.87 → 1.21.89
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/index.css +1 -1
- package/package.json +1 -1
- package/src/assets/_page.scss +18 -1
package/package.json
CHANGED
package/src/assets/_page.scss
CHANGED
|
@@ -152,6 +152,17 @@
|
|
|
152
152
|
align-items: center;
|
|
153
153
|
padding: 0 var(--vt-padding-lg) var(--vt-padding-base);
|
|
154
154
|
|
|
155
|
+
// Модифікатор: лейбл над контролом замість збоку
|
|
156
|
+
&--vertical {
|
|
157
|
+
flex-direction: column;
|
|
158
|
+
align-items: flex-start;
|
|
159
|
+
|
|
160
|
+
> label {
|
|
161
|
+
width: 100%;
|
|
162
|
+
margin-bottom: var(--vt-gap-sm, 4px);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
155
166
|
> label {
|
|
156
167
|
width: 250px;
|
|
157
168
|
font-size: var(--font-size-sm);
|
|
@@ -173,7 +184,7 @@
|
|
|
173
184
|
}
|
|
174
185
|
}
|
|
175
186
|
|
|
176
|
-
&-value {
|
|
187
|
+
&-item-value {
|
|
177
188
|
width: 100%;
|
|
178
189
|
min-height: 36px;
|
|
179
190
|
padding: var(--padding-button);
|
|
@@ -186,6 +197,12 @@
|
|
|
186
197
|
overflow: hidden;
|
|
187
198
|
text-overflow: ellipsis;
|
|
188
199
|
white-space: nowrap;
|
|
200
|
+
|
|
201
|
+
// Без "коробки" інпута — суцільний рядок тексту
|
|
202
|
+
&--plain {
|
|
203
|
+
min-height: auto;
|
|
204
|
+
padding: 0;
|
|
205
|
+
}
|
|
189
206
|
}
|
|
190
207
|
}
|
|
191
208
|
|