You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
580 B
SCSS

@import '../common/abstracts/variable';
@import '../common/abstracts/mixin';
.wot-theme-dark {
@include b(divider) {
color: $-dark-color3;
@include e(line) {
background: $-dark-color-gray;
}
}
}
@include b(divider) {
position: relative;
display: flex;
padding: $-divider-padding;
align-items: center;
color: $-divider-color;
font-size: $-divider-fs;
@include e(line) {
display: block;
flex: 1;
height: 1px;
transform: scaleY(0.5);
background: $-divider-line-color;
}
@include e(content) {
padding: 0 12px;
}
}