@deque/cauldron-styles 5.2.0-canary.9daa8e85 → 5.2.0-canary.babbbc33
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 +8 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1632,6 +1632,13 @@ textarea.Field--has-error:focus:hover,
|
|
|
1632
1632
|
flex-wrap: wrap;
|
|
1633
1633
|
}
|
|
1634
1634
|
|
|
1635
|
+
.Radio--inline {
|
|
1636
|
+
display: flex;
|
|
1637
|
+
align-items: baseline;
|
|
1638
|
+
flex-wrap: wrap;
|
|
1639
|
+
gap: var(--space-small);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1635
1642
|
.Checkbox {
|
|
1636
1643
|
margin-bottom: var(--space-smallest);
|
|
1637
1644
|
}
|
|
@@ -3472,7 +3479,7 @@ button.TooltipTabstop {
|
|
|
3472
3479
|
font-size: var(--text-size-small);
|
|
3473
3480
|
border-collapse: collapse;
|
|
3474
3481
|
text-align: left;
|
|
3475
|
-
width: 100
|
|
3482
|
+
width: var(--table-width, 100%);
|
|
3476
3483
|
overflow-wrap: break-word;
|
|
3477
3484
|
}
|
|
3478
3485
|
|
package/package.json
CHANGED