We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67f9872 commit 26a602eCopy full SHA for 26a602e
src/components/TextInput/TextInput.scss
@@ -14,9 +14,11 @@
14
background: $inputBackgroundColor;
15
font-size: 16px;
16
width: 100%;
17
- min-width: calc(
18
- var(--modal-min-width, 540px) * (1 - var(--modal-label-ratio, 0.5))
+ min-width: max(
+ 100%,
19
+ calc(var(--modal-min-width, 540px) * (1 - var(--modal-label-ratio, 0.5)))
20
);
21
+ min-height: 100%;
22
padding: 6px;
23
vertical-align: top;
24
resize: both;
0 commit comments