hippie-style/modules/editor/_editor_module.scss

25 lines
537 B
SCSS
Raw Permalink Normal View History

// Custom extends and mixins
// ------------------------------------------------------------------------------
@use "mixins";
@use "extends";
@use "../../global/config";
// Editor module styles
// ------------------------------------------------------------------------------
%wip {
border-right: config.$space_basic solid rgba(crimson, 0.8);
background-color: rgba(crimson, 0.1) !important;
}
.wip {
@extend %wip;
&::before, &::after {
content: "";
display: block;
height: 48px;
}
}
.wip_txt {
@extend %wip;
}