Update build process

This commit is contained in:
2023-06-25 10:17:12 +02:00
parent 811ae3db5f
commit 6be720d5e6
13 changed files with 279 additions and 94 deletions

View File

@@ -1,5 +1,6 @@
<script>
import "$lib/components/nordtheme.css"
export let title
</script>
<style>
.media-scroller {
@@ -9,11 +10,24 @@ import "$lib/components/nordtheme.css"
overflow-x: auto;
gap: 2rem;
padding: 3rem;
}
.wrapper{
background-color: var(--nord2);
}
h2{
color: var(--nord6);
padding-top: 2rem;
margin: 1em 0em 0em 4rem;
font-size: 3rem;
}
</style>
<div class=wrapper>
{#if title}
<h2>{title}</h2>
{/if}
<div class="media-scroller snaps-inline">
<slot></slot>
</div>
</div>