From 4c7755dfcf5e08b1fbabe1fff4fffc00233aaea5 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Thu, 7 May 2026 23:47:33 +0200 Subject: [PATCH] Implement layout for notes and files panels and refine remove row button styling --- src/styles.css | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/src/styles.css b/src/styles.css index 544ec75..2fb2a28 100644 --- a/src/styles.css +++ b/src/styles.css @@ -98,6 +98,20 @@ body { min-height: 0; } +.notes-panel { + flex: 1 1 67%; +} + +.files-panel { + flex: 0 1 33%; + max-height: 33%; +} + +.files-panel .table { + flex: 1; + min-height: 0; +} + .panel-title { display: flex; align-items: center; @@ -168,11 +182,11 @@ body { } button.remove-row-button { - width: 28px; - height: 28px; - min-width: 28px; + width: 24px; + height: 24px; + min-width: 24px; padding: 0; - border-radius: 50%; + border-radius: var(--control-radius); font-size: 12px; font-weight: 700; line-height: 1;