Skip to content

Commit d343115

Browse files
authored
feat: change header logo (#134)
1 parent dfa5291 commit d343115

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

public/images/logo-large.png

115 KB
Loading

src/layouts/components/Header/components/Navigation.astro

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,13 @@ const { items } = menuTexts[currentLang]
6161
<!-- Logo -->
6262
<a
6363
href={getRelativeLocaleUrl(currentLang, '/')}
64-
class="text-2xl font-bold font-outfit tracking-tighter text-pycon-white rounded px-2 py-1 outline-none transition-all focus-visible:bg-pycon-yellow-25/10 focus-visible:text-pycon-yellow"
64+
class="flex items-center outline-none transition-all hover:opacity-80 focus-visible:opacity-80"
6565
>
66-
PyCon<span class="text-pycon-yellow">ES</span>
66+
<img
67+
src="/images/logo-large.png"
68+
alt="PyConES 2026 Barcelona"
69+
class="w-auto md:w-64"
70+
/>
6771
</a>
6872

6973
<div class="wrapper flex items-center gap-4">

src/layouts/components/Header/components/ResponsiveToggle.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const { class: className } = Astro.props
1818
<button
1919
class:list={[
2020
className,
21-
'responsive-toggle lg:hidden text-pycon-white p-2 rounded outline-none transition-colors focus-visible:bg-pycon-yellow-25/15 focus-visible:text-pycon-yellow',
21+
'responsive-toggle lg:hidden text-pycon-white p-2 mt-4 rounded outline-none transition-colors focus-visible:bg-pycon-yellow-25/15 focus-visible:text-pycon-yellow',
2222
]}
2323
aria-expanded="false"
2424
aria-label="Abrir menú de navegación"

0 commit comments

Comments
 (0)