mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-21 22:25:03 -04:00
23 lines
367 B
CSS
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;
|
|
}
|
|
}
|