You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
273 B
SCSS

2 years ago
*,
*::before,
*::after {
// Good practice
2 years ago
box-sizing: border-box;
// For body and headings as typography should be done by hand anyway
2 years ago
margin: 0;
// For controls
font-family: inherit;
2 years ago
appearance: none;
}
html,
body {
display: contents;
2 years ago
}