mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02:00
53 lines
781 B
CSS
53 lines
781 B
CSS
.fullWidthChart {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
|
|
.halfWidthChart {
|
|
display: inline-block;
|
|
width: 50%;
|
|
}
|
|
|
|
.quarterWidthChart {
|
|
display: inline-block;
|
|
width: 25%;
|
|
}
|
|
|
|
.chartContainer {
|
|
margin: 5px;
|
|
padding: 15px 25px;
|
|
height: 300px;
|
|
border-radius: 10px;
|
|
background-color: var(--chartBackgroundColor);
|
|
}
|
|
|
|
.statContainer {
|
|
margin: 5px;
|
|
padding: 15px 25px;
|
|
height: 150px;
|
|
border-radius: 10px;
|
|
background-color: var(--chartBackgroundColor);
|
|
}
|
|
|
|
.statTitle {
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.stat {
|
|
font-weight: bold;
|
|
font-size: 60px;
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.halfWidthChart {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
|
|
.quarterWidthChart {
|
|
display: inline-block;
|
|
width: 100%;
|
|
}
|
|
}
|