summaryrefslogtreecommitdiff
path: root/www/src/components/Main.astro
blob: 2b4855cde7ed5e00cba1daf510479ca1a7f2d0a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<main>
    <slot></slot>
</main>

<style lang="scss">
  main {
    z-index: 1;
    width: 100%;
    max-width: 760px;
    margin: auto;
    padding: 0 0.75rem;
  }

  :global(main > *) {
    grid-column: 1;
    grid-column: 2;
  }
</style>