fix(styles): adjust inset property for chart container in chart area styles

This commit is contained in:
2026-04-03 12:57:43 +00:00
parent 9d0f6da905
commit 0d7f68086d
2 changed files with 4 additions and 1 deletions

View File

@@ -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';

View File

@@ -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;