2022-04-13 13:51:55 +07:00

23 lines
381 B
SCSS

.easy-pie-chart {
position: relative;
text-align: center;
.inner {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
display: inline-block;
}
img {
width: 75px;
height: 75px;
border-radius: 50%;
}
canvas {
display: block;
margin: 0 auto;
}
}