hippie/modules/editor/_editor_module.scss
Stephan Hagedorn f97f76ee3d New stuff
2017-08-22 16:50:09 +02:00

23 lines
506 B
SCSS

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