Subooru-Web/src/Layout/Header.svelte

24 lines
363 B
Svelte
Raw Normal View History

2021-07-05 03:03:21 -04:00
<script></script>
<header>
<nav>
<ul>
<slot />
</ul>
</nav>
</header>
<style>
ul
{
2021-07-05 03:14:07 -04:00
@apply flex items-center p-2;
2021-07-05 03:03:21 -04:00
}
header
{
2021-07-05 03:14:07 -04:00
@apply bg-gray-300 p-0 border-b border-black;
2021-07-05 03:03:21 -04:00
grid-area: header;
}
2021-07-05 03:14:07 -04:00
:global(.dark) header
{
@apply bg-gray-900 border-white;
}
2021-07-05 03:03:21 -04:00
</style>