21 lines
449 B
SCSS
21 lines
449 B
SCSS
@import 'colors';
|
|
@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: $secondary-font-color;
|
|
}
|
|
i {
|
|
-moz-user-select: none;
|
|
-webkit-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|
|
}
|
|
} |