hippie-style/modules/editor/_editor_module.scss
Stephan b60dd80cd5 added current state from hippie main repo
commit state 175816
source/style/hippie
2019-11-12 20:18:02 +01:00

23 lines
508 B
SCSS

// Custom extends and mixins
// ------------------------------------------------------------------------------
@import "mixins";
@import "extends";
// Editor module styles
// ------------------------------------------------------------------------------
%wip {
border-right: $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;
}