This commit is contained in:
SPRINX0\prochazka
2024-09-24 09:00:05 +02:00
parent 55f7f39efd
commit eaa54022fc
2 changed files with 7 additions and 1 deletions

View File

@@ -19,6 +19,8 @@
export let database; export let database;
export let connection; export let connection;
export let negativeMarginTop = false;
export let driver; export let driver;
let selectedSchema = null; let selectedSchema = null;
@@ -101,7 +103,7 @@
</script> </script>
{#if realSchemaList.length > 0} {#if realSchemaList.length > 0}
<div class="wrapper"> <div class="wrapper" class:negativeMarginTop>
<div class="mr-1">Schema:</div> <div class="mr-1">Schema:</div>
<SelectField <SelectField
isNative isNative
@@ -151,6 +153,9 @@
border-bottom: 1px solid var(--theme-border); border-bottom: 1px solid var(--theme-border);
margin-bottom: 5px; margin-bottom: 5px;
align-items: center; align-items: center;
}
.negativeMarginTop {
margin-top: -5px; margin-top: -5px;
} }

View File

@@ -165,6 +165,7 @@
{conid} {conid}
{database} {database}
{driver} {driver}
negativeMarginTop
/> />
<WidgetsInnerContainer> <WidgetsInnerContainer>