fix(styles): adjust inset property for chart container in chart area styles
This commit is contained in:
@@ -37,6 +37,9 @@ export class DeesChartArea extends DeesElement {
|
|||||||
@state()
|
@state()
|
||||||
accessor seriesStats: Array<{ name: string; latest: number; min: number; max: number; avg: number; color: string }> = [];
|
accessor seriesStats: Array<{ name: string; latest: number; min: number; max: number; avg: number; color: string }> = [];
|
||||||
|
|
||||||
|
@state()
|
||||||
|
accessor isFullPage: boolean = false;
|
||||||
|
|
||||||
@property()
|
@property()
|
||||||
accessor label: string = 'Untitled Chart';
|
accessor label: string = 'Untitled Chart';
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ export const chartAreaStyles = [
|
|||||||
}
|
}
|
||||||
.chartContainer {
|
.chartContainer {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
inset: 0;
|
inset: 0 0 4px 0;
|
||||||
}
|
}
|
||||||
.statsBar {
|
.statsBar {
|
||||||
height: 32px;
|
height: 32px;
|
||||||
|
|||||||
Reference in New Issue
Block a user