Skip to content
This repository has been archived by the owner on May 28, 2024. It is now read-only.

Commit

Permalink
Merge pull request #30 from pvdthings/HomePadding
Browse files Browse the repository at this point in the history
Home padding
  • Loading branch information
dillonfagan authored Jul 25, 2023
2 parents cefa58b + e27d786 commit 6fca30a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/layout/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import { t, locale, locales } from "$lib/language/translate"
</script>

<header class="w-full p-4 flex flex-col space-y-8 justify-center">
<header class="w-full pt-4 pb-4 flex flex-col space-y-8 justify-center">
<div class="grid grid-cols-3">
<div class="flex flex-row justify-start">
<div class="flex flex-row justify-start pl-1">
<div>
<a href="https://pvdthings.coop" class="flex flex-row items-center">
<svg xmlns="http://www.w3.org/2000/svg" class="w-8 h-8" viewBox="0 0 24 24" stroke-width="2" stroke="#000000" fill="none" stroke-linecap="round" stroke-linejoin="round">
Expand All @@ -20,7 +20,7 @@
<img src="/PVD_Things_Logo_White.png" alt="PVD Things" class="h-16 lg:h-20"/>
</a>
</div>
<div class="flex flex-row gap-x-3 justify-end align-top">
<div class="flex flex-row gap-x-3 justify-end align-top pr-4">
{#each locales as localeKey}
<button
class="text-xl font-bold font-display h-fit {($locale === localeKey) && 'underline'} hover:underline uppercase"
Expand Down

0 comments on commit 6fca30a

Please sign in to comment.