svelte-testing/src/components/header.svelte

15 lines
484 B
Svelte
Raw Normal View History

2022-07-01 21:30:29 +02:00
<div class="h-16 align-middle ">
<div class="h-full w-1/4 flex flex-row flex-wrap">
<img
class="h-5/6 ml-20 my-auto"
src="https://dutchellie.nl/DutchEllie/proper-website-2/raw/branch/main/web/static/images/icon.png"
alt="Icon"
/>
<div class="pl-5 mt-1 text-slate-200">
<h1 class="text-3xl h-min font-medium">Internetica Galactica 2</h1>
<p class="h-min text-xs text-slate-400">Surviving the rewriting</p>
</div>
</div>
<hr class="border-slate-700" />
</div>