From b907bd137809a7c0db51ce046a23ca9929429eb7 Mon Sep 17 00:00:00 2001 From: brokeh Date: Sun, 10 Nov 2024 11:31:37 +1100 Subject: [PATCH] fix: graph rendering too wide when heading title is too long The graph would previously render at the max width of either the card or the header, which if the header was too wide for the display would mean part of the graph would render outside of the card --- src/styles.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/styles.ts b/src/styles.ts index 3231082..235c11b 100644 --- a/src/styles.ts +++ b/src/styles.ts @@ -34,6 +34,7 @@ export const stylesApex: CSSResultGroup = css` #header { padding: 8px 16px 0px; grid-area: header; + overflow: hidden; } #header.floating { position: absolute;