@deque/cauldron-styles 5.6.1-canary.bb3ed293 → 5.6.2-canary.10f53c90
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 +2 -2
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1751,7 +1751,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1751
1751
|
box-sizing: border-box;
|
|
1752
1752
|
font-size: var(--text-size-small);
|
|
1753
1753
|
color: var(--field-content-color);
|
|
1754
|
-
min-width: var(--input-min-width);
|
|
1754
|
+
min-width: min(var(--input-min-width), 100%);
|
|
1755
1755
|
}
|
|
1756
1756
|
|
|
1757
1757
|
.Field__text-input[disabled],
|
|
@@ -1764,7 +1764,7 @@ textarea.Field--has-error:focus:hover,
|
|
|
1764
1764
|
display: block;
|
|
1765
1765
|
min-height: 56px;
|
|
1766
1766
|
font-size: var(--text-size-small);
|
|
1767
|
-
min-width: var(--input-min-width);
|
|
1767
|
+
min-width: min(var(--input-min-width), 100%);
|
|
1768
1768
|
padding: var(--space-half);
|
|
1769
1769
|
max-width: 500px;
|
|
1770
1770
|
color: var(--field-content-color);
|
package/package.json
CHANGED