frontend/src/scss/base/_reset.scss

21 lines
224 B
SCSS
Raw Normal View History

// Resets
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
}
img {
max-width: 100%;
height: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}