/** * CSS Reset */ @use './variables.scss' as *; *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html, body { height: 100%; width: 100%; } body { margin: 0; font-family: $font-family; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; line-height: 1.5; } #root { height: 100%; width: 100%; } button, input, textarea, select { font: inherit; } a { color: inherit; text-decoration: none; } ul, ol { list-style: none; }