mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-02-12 09:53:10 +00:00
20 lines
297 B
Svelte
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>
|