@dryui/ui 0.4.0 → 0.4.1
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.
|
@@ -497,7 +497,7 @@
|
|
|
497
497
|
--_dry-btn-padding-x: var(--dry-btn-padding-x, 0);
|
|
498
498
|
--_dry-btn-padding-y: var(--dry-btn-padding-y, 0);
|
|
499
499
|
aspect-ratio: 1;
|
|
500
|
-
height: var(--dry-space-
|
|
500
|
+
height: var(--dry-space-8);
|
|
501
501
|
--_dry-btn-radius: var(--dry-btn-radius, var(--dry-radius-sm));
|
|
502
502
|
--_dry-btn-font-size: var(
|
|
503
503
|
--dry-btn-font-size,
|
|
@@ -509,7 +509,7 @@
|
|
|
509
509
|
--_dry-btn-padding-x: var(--dry-btn-padding-x, 0);
|
|
510
510
|
--_dry-btn-padding-y: var(--dry-btn-padding-y, 0);
|
|
511
511
|
aspect-ratio: 1;
|
|
512
|
-
height: var(--dry-space-
|
|
512
|
+
height: var(--dry-space-14);
|
|
513
513
|
--_dry-btn-radius: var(--dry-btn-radius, var(--dry-radius-lg));
|
|
514
514
|
--_dry-btn-font-size: var(
|
|
515
515
|
--dry-btn-font-size,
|
|
@@ -240,8 +240,15 @@
|
|
|
240
240
|
}
|
|
241
241
|
|
|
242
242
|
[data-multi-select-root] {
|
|
243
|
+
/* auto-fit requires a fixed-size min for the column track; 48px is the
|
|
244
|
+
smallest comfortable width for a short token like "Vue ×". auto-fit
|
|
245
|
+
collapses trailing empty tracks so tokens pack tightly from the
|
|
246
|
+
start edge. The original min-content → max-content fell back to
|
|
247
|
+
single-column because max-content isn't a <fixed-size> under the
|
|
248
|
+
auto-fill/auto-fit spec. */
|
|
243
249
|
display: grid;
|
|
244
|
-
grid-template-columns: repeat(auto-
|
|
250
|
+
grid-template-columns: repeat(auto-fit, minmax(48px, max-content));
|
|
251
|
+
justify-content: start;
|
|
245
252
|
gap: var(--dry-space-1_5);
|
|
246
253
|
padding: var(--dry-space-2);
|
|
247
254
|
border: 1px solid var(--dry-color-stroke-strong);
|