23 lines
404 B
SCSS
23 lines
404 B
SCSS
// This reset lifted largely from Josh Comeau's "CSS for JS Devs" course
|
|
|
|
// Use a more-intuitive box-sizing model.
|
|
*, *::before, *::after {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
// Remove default margin
|
|
* {
|
|
margin: 0;
|
|
}
|
|
|
|
// Allow percentage-based heights in the application
|
|
html, body {
|
|
min-height: 100%;
|
|
}
|
|
|
|
// Improve media defaults
|
|
img, picture, video, canvas, svg {
|
|
display: block;
|
|
max-width: 100%;
|
|
}
|