15 lines
234 B
SCSS
15 lines
234 B
SCSS
|
button,
|
||
|
button[type="button"],
|
||
|
button[type="reset"],
|
||
|
button[type="submit"] {
|
||
|
-webkit-appearance: button;
|
||
|
}
|
||
|
|
||
|
input,
|
||
|
input[type="text"],
|
||
|
input[type="email"] {
|
||
|
-webkit-appearance: none;
|
||
|
-moz-appearance: none;
|
||
|
appearance: none;
|
||
|
}
|