about summary refs log tree commit diff stats
path: root/src/pages/components/Row.svelte
blob: 09246d9856278b2bf18c227a433079d9abe74e88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<div {...$$restProps} on:click>
  <slot></slot>
</div>

<style>
  div {
    justify-content: space-between;
    display: flex;
    align-items: center;
    margin: 20px 0;
  }
</style>