mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
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;
|
|
}
|
|
} |