website/styles/_reset.scss
2024-04-13 15:26:52 +02:00

33 lines
438 B
SCSS

* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
*:before, *:after {
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
display: block;
max-width: 100%;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
font-weight: unset;
overflow-wrap: break-word;
}