aboutsummaryrefslogtreecommitdiff
path: root/fe/src/lib/Column.svelte
blob: f0360731331084c2a917289706f2acbd77e7cad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="column">
    <slot />
</div>

<style>
    .column {
        display: flex;
        flex-direction: column;
        height: 100%;
        gap: var(--gap, 32px);
        width: var(--width, initial);
    }
</style>