File size: 588 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
.expanding-area {
position: relative;
$initial-focused-height: 70px;
pre,
textarea {
max-height: 400px;
min-height: 33px;
margin: 0;
padding: 5px;
font-size: $font-body-small;
font-family: $sans;
line-height: 21px;
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-word;
}
textarea {
position: absolute;
top: 0;
left: 0;
height: 100%;
resize: none;
}
pre {
border: 1px solid var(--color-neutral-light);
box-sizing: border-box;
display: block;
visibility: hidden;
}
&.focused {
min-height: $initial-focused-height;
}
}
|