Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/images/logo-large.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions src/layouts/components/Header/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,13 @@ const { items } = menuTexts[currentLang]
<!-- Logo -->
<a
href={getRelativeLocaleUrl(currentLang, '/')}
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"
class="flex items-center outline-none transition-all hover:opacity-80 focus-visible:opacity-80"
>
PyCon<span class="text-pycon-yellow">ES</span>
<img
src="/images/logo-large.png"
alt="PyConES 2026 Barcelona"
class="w-auto md:w-64"
/>
</a>

<div class="wrapper flex items-center gap-4">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const { class: className } = Astro.props
<button
class:list={[
className,
'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',
'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',
]}
aria-expanded="false"
aria-label="Abrir menú de navegación"
Expand Down
Loading