Skip to content

Commit 5e8ddd2

Browse files
committed
Fix responsive style.
1 parent bc238a5 commit 5e8ddd2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/components/Footer.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ const gitVersion = __GIT_VERSION__;
5353
<div
5454
class="flex flex-col lg:flex-row self-center gap-8 lg:gap-12 justify-end"
5555
>
56-
<div class="flex text-white/40 w-2/3 px-6 items-center">
56+
<div class="flex text-white/40 w-full lg:w-2/3 px-6 items-center">
5757
<p>Excited about our mission? Want to collaborate or contribute? Let's connect!
5858
We're open to partnership opportunities and would love to hear your ideas.
5959
<a class="text-white" href="mailto:helpdesk@europython.eu">helpdesk@europython.eu</a>
6060
</p>
6161
</div>
62-
<div class="flex text-white/40 w-1/3 text-start">
62+
<div class="flex text-white/40 w-full lg:w-1/3 text-start">
6363
<div>
6464
<EPSLogo width=90 height=90 class="w-[90px] mr-4 h-auto " />
6565
</div>

src/components/Header.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import links from "../data/links.json";
88
---
99

1010
<section id="navbar" class="fixed top-0 z-50 transition-transform duration-300 transform-gpu w-full">
11-
<div class="container max-w-[1150px] mx-auto py-1 mt-1 lg:p-2 lg:mt-6 px-6 flex items-center justify-between relative z-40 bg-white/80 rounded-full backdrop-blur-md shadow-lg">
11+
<div class="container max-w-[1150px] mx-auto py-1 mt-1 lg:p-2 lg:mt-6 px-2 flex items-center justify-between relative z-40 bg-white/80 rounded-full backdrop-blur-md shadow-lg">
1212
<input
1313
type="checkbox"
1414
name="mobile-controls"

src/components/header/header-actions.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const IS_LIVE = false;
3939

4040

4141
<label for="nav_toggle" class="flex xl:hidden">
42-
<span class="w-[3em] h-[3em] font-bold text-lg px-4 py-4 rounded-lg inline-flex items-center justify-center leading-4 transition-colors duration-200 not-prose border hover:text-black bg-primary text-white hover:bg-primary-hover border-transparent">
42+
<span class="w-[3em] h-[3em] font-bold text-lg px-4 py-4 rounded-full inline-flex items-center justify-center leading-4 transition-colors duration-200 not-prose border hover:text-black bg-primary text-white hover:bg-primary-hover border-transparent">
4343
{mobile ? <Icon name="close" size="fa-xl" /> : <Icon name="bars" size="fa-xl" />}
4444
</span>
4545
</label>

0 commit comments

Comments
 (0)