25 lines
311 B
SCSS
25 lines
311 B
SCSS
|
html {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
*,
|
||
|
*::before,
|
||
|
*::after {
|
||
|
box-sizing: inherit;
|
||
|
}
|
||
|
|
||
|
a, input, button {
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
input, button {
|
||
|
border: 0;
|
||
|
border-radius: 0;
|
||
|
box-shadow: none;
|
||
|
font-family: inherit;
|
||
|
}
|
||
|
|
||
|
input:-webkit-autofill {
|
||
|
-webkit-box-shadow: 0 0 0 30px white inset;
|
||
|
}
|