45 lines
657 B
SCSS
Executable File
45 lines
657 B
SCSS
Executable File
// 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;
|
|
}
|
|
}
|
|
|
|
|
|
/* Thanos */
|
|
/* plotly toolbar */
|
|
.modebar {
|
|
display: none !important;
|
|
}
|
|
|
|
.plotly_fig {
|
|
resize: vertical;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
} |