feat(sql_console): make scrolls and headers always visible

This commit is contained in:
Elian Doran 2026-01-17 21:35:58 +02:00
parent 2ecfbbf284
commit 6ae74b3181
No known key found for this signature in database

View File

@ -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%;
}
}
}
}