24 lines
562 B
SCSS
24 lines
562 B
SCSS
@import "variables";
|
|
|
|
vn-textarea {
|
|
& > .mdl-textfield {
|
|
width: initial;
|
|
display: block;
|
|
}
|
|
label {
|
|
position: absolute;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
color: $color-font-secondary;
|
|
transition-duration: .2s;
|
|
transition-timing-function: cubic-bezier(.4,0,.2,1);
|
|
}
|
|
& textarea.ng-not-empty+label.placeholder{
|
|
top: 5px;
|
|
color: $color-main;
|
|
padding: 0;
|
|
font-size: 12px;
|
|
visibility: visible!important;
|
|
content: normal!important;
|
|
}
|
|
} |