Skip to content

Commit

Permalink
style: 🎨 slightly better-looking header
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhxNguyen7 committed Dec 26, 2023
1 parent 32e733c commit ce1e0e3
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions src/lib/components/Header/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,16 @@
<!-- Header for the app -->

<header class="h-16 bg-white">
<div class="flex flex-row justify-between">
<div class="flex flex-row justify-between h-full">
<div class="flex flex-row">
<div class="flex flex-col justify-center">
<img src="/icon.png" class="h-10 w-10 rounded-full" alt="" />
</div>
<div class="flex flex-col justify-center">
<div class="text-2xl font-bold">ZotMeet</div>
</div>
<img src="/icon.png" class="h-10 w-10 rounded-full" alt="ZotMeet icon" />
<div class="text-4xl font-bold ml-10 mt-auto mb-auto">ZotMeet</div>
<!-- Hamburger -->
{#if hamburger}
<button on:click={openDrawer}>
<HamburgerMenu class="h-12 w-12" />
</button>
{/if}
</div>
<!-- Hamburger -->
{#if hamburger}
<button on:click={openDrawer}>
<HamburgerMenu class="h-12 w-12" />
</button>
{/if}
</div>
</header>

0 comments on commit ce1e0e3

Please sign in to comment.