From b3d8248c1f6836e963ed3aa97ad01212d3d107c3 Mon Sep 17 00:00:00 2001 From: windingwind <33902321+windingwind@users.noreply.github.com> Date: Fri, 11 Oct 2024 10:40:38 +0200 Subject: [PATCH] fix: template picker table height --- addon/chrome/content/styles/templatePicker.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/addon/chrome/content/styles/templatePicker.css b/addon/chrome/content/styles/templatePicker.css index 44d16b1..4b0d777 100644 --- a/addon/chrome/content/styles/templatePicker.css +++ b/addon/chrome/content/styles/templatePicker.css @@ -5,6 +5,7 @@ dialog { .viewport-container { -moz-window-dragging: no-drag; + height: 100%; } .viewport { @@ -17,3 +18,7 @@ dialog { overflow: auto; background: var(--material-background); } + +.virtualized-table { + height: 100%; +}