hippie/modules/editor/_editor_module.scss
2016-12-01 15:37:49 +01:00

23 lines
No EOL
503 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;
}