21 lines
452 B
SCSS
21 lines
452 B
SCSS
@import "variables";
|
|
@import '../textfield/style.scss';
|
|
|
|
vn-input-number {
|
|
@extend vn-textfield;
|
|
input {
|
|
text-align: center!important;
|
|
}
|
|
vn-icon[icon=add],
|
|
vn-icon[icon=remove]{
|
|
&:not(:hover){
|
|
color: $color-font-secondary;
|
|
}
|
|
i {
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
}
|
|
} |