23 lines
381 B
SCSS
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;
|
|
}
|
|
} |