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.
18 lines
355 B
SCSS
18 lines
355 B
SCSS
@import "../common/abstracts/variable.scss";
|
|
@import "../common/abstracts/_mixin.scss";
|
|
|
|
@include b(circle) {
|
|
position: relative;
|
|
display: inline-block;
|
|
text-align: center;
|
|
|
|
@include e(text) {
|
|
position: absolute;
|
|
z-index: 1;
|
|
top: 50%;
|
|
left: 0;
|
|
width: 100%;
|
|
transform: translateY(-50%);
|
|
color: $-circle-text-color;
|
|
}
|
|
} |