mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
22 lines
363 B
CSS
22 lines
363 B
CSS
.circularProgressBarContainer {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
text-align: center;
|
|
}
|
|
|
|
.circularProgressBar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transform: rotate(-90deg);
|
|
transform-origin: center center;
|
|
}
|
|
|
|
.circularProgressBarText {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
font-weight: bold;
|
|
}
|