hippie/source/style/modules/editor/_editor_module.scss

24 lines
508 B
SCSS
Raw Normal View History

// Custom extends and mixins
// ------------------------------------------------------------------------------
@import "mixins";
@import "extends";
// Editor module styles
// ------------------------------------------------------------------------------
%wip {
border-right: $basic_space solid rgba(crimson, 0.8);
background-color: rgba(crimson, 0.1) !important;
}
.wip {
@extend %wip;
2017-08-22 16:50:09 +02:00
&::before, &::after {
content: "";
display: block;
height: 48px;
}
}
.wip_txt {
@extend %wip;
2017-08-22 16:50:09 +02:00
}