This commit is contained in:
MeIchthys 2023-03-15 09:56:26 -04:00 committed by GitHub
parent f541bf186c
commit 48ba73e06d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,8 +6,9 @@ const TPL = `
<style> <style>
.sql-table-schemas-widget { .sql-table-schemas-widget {
padding: 12px; padding: 12px;
padding-right: 10%;
} }
.sql-table-schemas button { .sql-table-schemas button {
padding: 0.25rem 0.4rem; padding: 0.25rem 0.4rem;
font-size: 0.875rem; font-size: 0.875rem;
@ -17,21 +18,21 @@ const TPL = `
background: var(--button-background-color); background: var(--button-background-color);
color: var(--button-text-color); color: var(--button-text-color);
} }
.sql-console-result-container { .sql-console-result-container {
width: 100%; width: 100%;
font-size: smaller; font-size: smaller;
margin-top: 10px; margin-top: 10px;
flex-grow: 1; flex-grow: 1;
overflow: auto; overflow: auto;
min-height: 0; min-height: 0;
} }
.table-schema td { .table-schema td {
padding: 5px; padding: 5px;
} }
</style> </style>
Tables: Tables:
<span class="sql-table-schemas"></span> <span class="sql-table-schemas"></span>
</div>`; </div>`;