mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-20 21:46:00 +00:00
18 lines
263 B
Svelte
18 lines
263 B
Svelte
<script lang="ts">
|
|
export let noMargin = false;
|
|
</script>
|
|
|
|
<div class:noMargin><slot /></div>
|
|
|
|
<style>
|
|
div {
|
|
display: flex;
|
|
border-bottom: 1px solid var(--theme-border);
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
div.noMargin {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|