Radish alpha
r
rad:z4V1sjrXqjvFdnCUbxPFqd5p4DtH5
Radicle web interface
Radicle
Git
radicle-explorer src App Layout.svelte
<script lang="ts">
  import Header from "@app/components/Header.svelte";
</script>

<style>
  .content {
    width: 100%;
    display: grid;
    height: calc(100vh - var(--global-header-height));
  }
  .center {
    overflow-y: auto;
  }
</style>

<Header />
<div class="content">
  <div class="center">
    <slot />
  </div>
</div>