You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-06-15 00:15:15 +02:00
30 lines
454 B
SCSS
30 lines
454 B
SCSS
![]() |
// 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;
|
||
|
}
|
||
|
}
|