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