src/UXClient/Components/PieChart/PieChart.scss (43 lines of code) (raw):

@import "../../styles"; @mixin pcColors($grays){ $gray1: nth($grays, 1); // text $gray2: nth($grays, 2); // hover $gray3: nth($grays, 3); // element $gray4: nth($grays, 4); // background color: $gray1; background: $gray3; .tsi-pieChartSVG{ text{ fill: $gray1; } path { stroke: $gray1; } } @include chartColors($grays); } .tsi-pieChart { &.tsi-dark { $grays: grays('dark'); @include pcColors($grays); .tsi-resizeGutter { background-image: url(./../../Icons/drag_handle_dark.svg); } } &.tsi-light{ $grays: grays('light'); @include pcColors($grays); .tsi-resizeGutter { background-image: url(./../../Icons/drag_handle_light.svg); } } display: flex; position: relative; .tsi-sliderWrapper{ position: absolute; height: 55px; bottom: 8px; right: 0px; width: 100%; } }