You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
454 B
30 lines
454 B
1 year ago
|
// Area Chart
|
||
|
.chart-area {
|
||
|
position: relative;
|
||
|
height: 10rem;
|
||
|
width: 100%;
|
||
|
@include media-breakpoint-up(md) {
|
||
|
height: 20rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Bar Chart
|
||
|
.chart-bar {
|
||
|
position: relative;
|
||
|
height: 10rem;
|
||
|
width: 100%;
|
||
|
@include media-breakpoint-up(md) {
|
||
|
height: 20rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Pie Chart
|
||
|
.chart-pie {
|
||
|
position: relative;
|
||
|
height: 15rem;
|
||
|
width: 100%;
|
||
|
@include media-breakpoint-up(md) {
|
||
|
height: calc(20rem - 43px) !important;
|
||
|
}
|
||
|
}
|