15 lines
276 B
SCSS
15 lines
276 B
SCSS
|
@import "variables";
|
||
|
@import '../textfield/style.scss';
|
||
|
|
||
|
vn-input-file {
|
||
|
@extend vn-textfield;
|
||
|
.value {
|
||
|
color: $color-font-secondary;
|
||
|
cursor: pointer;
|
||
|
padding: 4px 0;
|
||
|
outline: 0
|
||
|
}
|
||
|
input {
|
||
|
display: none !important
|
||
|
}
|
||
|
}
|