fix attribute
[roojs1] / scss / startbootstrap-sb-admin-2 / _charts.scss
1 // Area Chart
2 .chart-area {
3   position: relative;
4   height: 10rem;
5   width: 100%;
6   @include media-breakpoint-up(md) {
7     height: 20rem;
8   }
9 }
10
11 // Bar Chart
12 .chart-bar {
13   position: relative;
14   height: 10rem;
15   width: 100%;
16   @include media-breakpoint-up(md) {
17     height: 20rem;
18   }
19 }
20
21 // Pie Chart
22 .chart-pie {
23   position: relative;
24   height: 15rem;
25   width: 100%;
26   @include media-breakpoint-up(md) {
27     height: calc(20rem - 43px) !important;
28   }
29 }