hippie-style/modules/editor/_editor_module.scss
sthag 4e4f8814d3 feat: Resolve all deprecation warnings for sass
- Replace @import with @use and @forward
- Only color function is used in _basic.scss for now
- Change _all.scss to _index.scss
- Modules use direct dependencies
- Move @include from _config.scss to _common.scss, this was a long term mistake
- Remove $color_list
- Change basic_color()
2025-10-26 11:33:54 +01:00

24 lines
537 B
SCSS

// 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;
}