website/styles/_reset.scss

33 lines
438 B
SCSS
Raw Permalink Normal View History

2023-04-07 01:11:08 +02:00
* {
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 {
2023-06-07 00:12:05 +02:00
font-weight: unset;
2023-04-07 01:11:08 +02:00
overflow-wrap: break-word;
}