mirror of https://github.com/twbs/bootstrap.git
style: fix linter warnings in no-spinners SCSS utility
This commit is contained in:
parent
4d263ee422
commit
fbc8cafe28
|
@ -1,12 +1,11 @@
|
||||||
// scss/utilities/_no-spinners.scss
|
// scss/helpers/_no-spinners.scss
|
||||||
|
|
||||||
.no-spinners {
|
.no-spinners {
|
||||||
|
|
||||||
&::-webkit-inner-spin-button,
|
&::-webkit-inner-spin-button,
|
||||||
&::-webkit-outer-spin-button {
|
&::-webkit-outer-spin-button {
|
||||||
-webkit-appearance: none;
|
@include appearance(none);
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
-moz-appearance: textfield;
|
@include appearance(textfield);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue