Files
unluckiest/front/src/lib/components/PageTitle.svelte
2024-11-03 16:37:13 +01:00

11 lines
140 B
Svelte

<h1 class="page-title">
<slot></slot>
</h1>
<style>
.page-title
{
position: absolute;
top: 50px;
}
</style>