mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-01 15:18:50 +01:00
49 lines
840 B
SCSS
49 lines
840 B
SCSS
@import '../../../@theme/styles/themes';
|
|
@import '~bootstrap/scss/mixins/breakpoints';
|
|
@import '~@nebular/theme/styles/global/breakpoints';
|
|
|
|
@include nb-install-component() {
|
|
position: relative;
|
|
display: block;
|
|
|
|
nb-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
nb-card-header {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.subtitle {
|
|
color: nb-theme(text-hint-color);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.chart-container {
|
|
flex: 1;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.chart-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: 2.125rem;
|
|
}
|
|
|
|
@include media-breakpoint-down(is) {
|
|
ngx-legend-chart {
|
|
::ng-deep .legends {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|