Reputation: 74
I have no idea what might be causing it. Of note is that I'm using normalize and this is how my base css file looks like:
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 6.25%; // 1rem = 1px
}
body {
box-sizing: border-box;
}
Upvotes: 0
Views: 42