Files
Prowlarr/frontend/src/Indexer/Stats/Stats.css
T
2021-01-09 00:04:55 -05:00

23 lines
367 B
CSS

.fullWidthChart {
display: inline-block;
padding: 15px 25px;
width: 100%;
height: 300px;
}
.halfWidthChart {
display: inline-block;
padding: 15px 25px;
width: 50%;
height: 300px;
}
@media only screen and (max-width: $breakpointSmall) {
.halfWidthChart {
display: inline-block;
padding: 15px 25px;
width: 100%;
height: 300px;
}
}