- Replace @import with @use and @forward - Only color function is used in _basic.scss for now - Change _all.scss to _index.scss - Modules use direct dependencies - Move @include from _config.scss to _common.scss, this was a long term mistake - Remove $color_list - Change basic_color()
24 lines
482 B
SCSS
24 lines
482 B
SCSS
@use "../../global/config";
|
|
@use "../../global/common";
|
|
@use "../../elements/sections";
|
|
@use "../../functions/color" as *;
|
|
|
|
.body_status {
|
|
@extend .sec_main_status;
|
|
height: 100vh;
|
|
border-color: basic_color(foxtrot);
|
|
|
|
.main_site {
|
|
@extend .wrap_center;
|
|
& > h1:first-of-type {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
font-weight: bold;
|
|
line-height: 1;
|
|
}
|
|
& > h1 + h3 {
|
|
margin-top: 0;
|
|
margin-bottom: config.$space_small;
|
|
}
|
|
}
|
|
}
|