clra
Version:
Clean CRA, reset css with opinionated index.css
41 lines (34 loc) • 391 B
CSS
@import-normalize;
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
font-size: 1.6rem;
line-height: 1.6;
}
body,
#root,
.App {
min-height: 100vh;
}
input,
button,
textarea,
select {
font: inherit;
}
img,
picture,
video {
max-width: 100%;
display: block;
}