24 lines
242 B
SCSS
24 lines
242 B
SCSS
@import "colors";
|
|
@import "placeholders";
|
|
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
background-color: $white;
|
|
}
|
|
|
|
html {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
box-sizing: inherit;
|
|
}
|
|
|
|
a {
|
|
@extend %outline;
|
|
|
|
text-decoration: none;
|
|
}
|