15 lines
434 B
SCSS
15 lines
434 B
SCSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
user-select: none;
|
|
font-size: var(--font-size-regular);
|
|
}
|
|
|
|
input[type="password"]::-ms-reveal, /* For Microsoft Edge */
|
|
input[type="password"]::-ms-clear, /* For Edge clear button */
|
|
input[type="password"]::-webkit-clear-button, /* For Chrome/Safari clear button */
|
|
input[type="password"]::-webkit-inner-spin-button { /* Just in case */
|
|
display: none;
|
|
}
|