Make overflow visible in body and left pane

Changed the `overflow` property from `hidden` to `visible` in both the `body` and `.leftPane` styles. This update ensures content is not clipped and allows for better handling of overflows.
This commit is contained in:
2026-02-07 18:35:21 +01:00
parent a19d13b1b5
commit b18ae57779

View File

@@ -16,12 +16,12 @@ body {
gap: 14px;
padding: 14px;
box-sizing: border-box;
overflow: hidden;
overflow: visible;
}
/* LEFT COLUMN */
.leftPane {
overflow: hidden;
overflow: visible;
min-width: 0;
display: grid;