mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-29 12:14:00 +00:00
30 lines
489 B
Svelte
30 lines
489 B
Svelte
<div class="toolstrip">
|
|
<slot name="toolstrip" />
|
|
</div>
|
|
|
|
<div class="content">
|
|
<slot />
|
|
</div>
|
|
|
|
<style>
|
|
.content {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
border-bottom: 1px solid var(--theme-border);
|
|
right: 0;
|
|
bottom: var(--dim-toolstrip-height);
|
|
display: flex;
|
|
}
|
|
|
|
.toolstrip {
|
|
position: absolute;
|
|
left: 0;
|
|
height: var(--dim-toolstrip-height);
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
background: var(--theme-bg-1);
|
|
}
|
|
</style>
|