2025-05-19 15:34:05 -07:00

20 lines
297 B
Svelte

<script lang="ts">
// Simple header component that accepts a slot
</script>
<div class="header">
<slot />
</div>
<style>
.header {
position: fixed;
top: 1rem;
right: 1rem;
z-index: 50;
display: flex;
align-items: center;
justify-content: flex-end;
}
</style>