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

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

    @media (min-width: 916px) {
        .column {
            flex-direction: column;
        }
    }
</style>