mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-15 05:58:52 +01:00
35 lines
691 B
SCSS
35 lines
691 B
SCSS
@import '../../../@theme/styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
|
|
nb-card {
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
nb-card-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-top: nb-theme(card-header-with-select-padding-top);
|
|
padding-bottom: nb-theme(card-header-with-select-padding-bottom);
|
|
margin-bottom: -1px;
|
|
}
|
|
|
|
ngx-traffic-chart {
|
|
flex: 1;
|
|
}
|
|
|
|
::ng-deep {
|
|
.echart {
|
|
display: block;
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
canvas {
|
|
border-bottom-left-radius: nb-theme(card-border-radius);
|
|
border-bottom-right-radius: nb-theme(card-border-radius);
|
|
}
|
|
}
|
|
}
|