Skip to content

Commit f6a3db5

Browse files
committed
Update paddings.
1 parent ad1a3a0 commit f6a3db5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/NavItems.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ const { items, inverted = false, level = 1 } = Astro.props;
6565
aria-haspopup="true"
6666
aria-expanded="false"
6767
class={clsx(
68-
"flex items-center justify-between",
69-
level === 1 ? "font-bold inline-block w-full text-3xl xl:text-base p-5 text-center xl:text-left xl:p-2 xl:px-5 xl:group-hover:bg-secondary xl:group-hover:rounded-[30px] xl:group-hover:text-white xl:group-focus:bg-secondary xl:group-focus:rounded-[30px] xl:group-focus:text-white" : "",
68+
"flex items-center justify-around",
69+
level === 1 ? "font-bold inline-block w-full text-3xl xl:text-base p-5 text-center xl:text-left xl:p-2 xl:px-4 xl:group-hover:bg-secondary xl:group-hover:rounded-[30px] xl:group-hover:text-white xl:group-focus:bg-secondary xl:group-focus:rounded-[30px] xl:group-focus:text-white" : "",
7070
level === 2 ? "block w-full font-bold text-center xl:text-left mb-[2px] p-2 xl:px-5" : "",
7171
level === 3 ? "block w-full p-2 xl:px-4 text-sm xl:text-left" : ""
7272
)}

src/components/header/header-actions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const IS_LIVE = false;
3131
<kbd>Ctrl</kbd><kbd>K</kbd>
3232
</kbd>
3333
</button>
34-
<Button custom url="/tickets" icon="ticket" class="button-link font-bold text-lg px-4 py-3 rounded-full inline-flex items-center justify-center leading-4 transition-colors duration-200 not-prose border hover:text-black w-full max-w-48 max-xl:hidden bg-button text-text-inverted hover:bg-button-hover border-transparent">Tickets</Button>
34+
<Button custom url="/tickets" icon="ticket" class="button-link font-bold text-lg px-4 py-3 rounded-full inline-flex items-center justify-center leading-4 transition-colors duration-200 not-prose border hover:text-black w-full max-w-36 max-xl:hidden bg-button text-text-inverted hover:bg-button-hover border-transparent">Tickets</Button>
3535
{IS_LIVE && <Button url="/live">Live</Button>}
3636
</>
3737
: null

src/components/header/header-logo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ interface Props {
44
}
55
---
66

7-
<a href="/">
7+
<a href="/" class="block min-w-[44px] min-h-[44px]">
88
<img class="md:block block w-[44px] h-[44px]" src="/EuroPython2025_logo.png" />
99
</a>

0 commit comments

Comments
 (0)