constrained max height and width for textarea

This commit is contained in:
Afzal Sayed 2017-11-20 21:33:45 +05:30
parent 7c89b5a0a2
commit 5ca4b85a9d

View file

@ -32,6 +32,12 @@ input, select, textarea {
.input-block {
width: 100%;
}
textarea{
max-width: 100%;
max-height: 90vh;
}
// TODO: make these classes implicit. We can find out what class to apply based on its type
.paper-radio, .paper-check {
display: block;