28 lines
277 B
SCSS
28 lines
277 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;
|
|
}
|
|
|
|
turbo-events {
|
|
display: none;
|
|
}
|