css_reset/scss/reset.scss

45 lines
409 B
SCSS

* {
margin: 0;
&::before,
&::after {
box-sizing: border-box;
}
}
html {
height: 100%;
}
body {
height: 100%;
scroll-behavior: smooth;
line-height: calc(1em + 0.5rem);
}
img,
picture,
video,
canvas,
svg {
display: block;
max-width: 100%;
}
input,
button,
textarea,
select {
font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
overflow-wrap: break-word;
}