This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/assets/styles/reset.css
2024-10-03 16:08:39 -07:00

18 lines
No EOL
300 B
CSS

*, *::before, *::after {
box-sizing: border-box;
margin: 0;
}
body {
line-height: var(--line-height-md);
-webkit-font-smoothing: antialiased;
-webkit-text-size-adjust: none;
}
input, button, textarea, select {
font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
overflow-wrap: break-word;
}