From 6ae74b3181356683aada977a8011328645c7b63b Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 17 Jan 2026 21:35:58 +0200 Subject: [PATCH] feat(sql_console): make scrolls and headers always visible --- .../src/widgets/type_widgets/SqlConsole.css | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/apps/client/src/widgets/type_widgets/SqlConsole.css b/apps/client/src/widgets/type_widgets/SqlConsole.css index 3f77b38f71..aad40abbba 100644 --- a/apps/client/src/widgets/type_widgets/SqlConsole.css +++ b/apps/client/src/widgets/type_widgets/SqlConsole.css @@ -7,12 +7,21 @@ overflow: auto; } - .sql-console-result-container { - width: 100%; - font-size: smaller; - flex-grow: 1; - overflow: auto; - min-height: 0; + .sql-result-widget { + height: 100%; + + > .sql-console-result-container { + width: 100%; + height: 100%; + font-size: smaller; + flex-grow: 1; + overflow: auto; + min-height: 0; + + > .tabulator { + height: 100%; + } + } } }