13 lines
288 B
SCSS
13 lines
288 B
SCSS
/* Pie chart style 01 */
|
|
.pie-chart-style-01 {
|
|
position: relative;
|
|
display: inline-block;
|
|
.percent {
|
|
position: absolute;
|
|
left: 0;
|
|
right: 0;
|
|
margin: 0 auto;
|
|
top: 50%;
|
|
@include prefix(transform, translateY(-50%), webkit);
|
|
}
|
|
} |