Skip to content

Commit 3fa7c73

Browse files
committed
fix: add p-4 padding to icon containers on contact and join-us pages
1 parent 1167fec commit 3fa7c73

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/pages/contact.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const inquiries = [
8787
<ul class="grid gap-6 md:grid-cols-3">
8888
<li>
8989
<a href={`mailto:${CONTACT_EMAIL}`} class="group block p-6 rounded-2xl border border-primary/20 bg-base-100 transition-all duration-300 hover:shadow-lg hover:border-primary/40 grid grid-rows-[auto_auto_1fr]">
90-
<div class="w-12 h-12 rounded-xl bg-primary/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
90+
<div class="w-12 h-12 p-4 rounded-xl bg-primary/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
9191
<Icon name="lucide:mail" class="w-6 h-6 text-primary" />
9292
</div>
9393
<span class="block text-sm text-base-content/60 mb-1">{t('contact.email.label')}</span>
@@ -96,7 +96,7 @@ const inquiries = [
9696
</li>
9797
<li>
9898
<a href="#" class="group block p-6 rounded-2xl border border-violet-500/20 bg-base-100 transition-all duration-300 hover:shadow-lg hover:border-violet-500/40 grid grid-rows-[auto_auto_1fr]">
99-
<div class="w-12 h-12 rounded-xl bg-violet-500/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
99+
<div class="w-12 h-12 p-4 rounded-xl bg-violet-500/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
100100
<Icon name="lucide:message-circle" class="w-6 h-6 text-violet-500" />
101101
</div>
102102
<span class="block text-sm text-base-content/60 mb-1">{t('contact.discord.label')}</span>
@@ -105,7 +105,7 @@ const inquiries = [
105105
</li>
106106
<li>
107107
<a href="#" class="group block p-6 rounded-2xl border border-emerald-500/20 bg-base-100 transition-all duration-300 hover:shadow-lg hover:border-emerald-500/40 grid grid-rows-[auto_auto_1fr]">
108-
<div class="w-12 h-12 rounded-xl bg-emerald-500/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
108+
<div class="w-12 h-12 p-4 rounded-xl bg-emerald-500/10 flex items-center justify-center mb-4 group-hover:scale-110 transition-transform duration-300">
109109
<Icon name="lucide:calendar" class="w-6 h-6 text-emerald-500" />
110110
</div>
111111
<span class="block text-sm text-base-content/60 mb-1">{t('contact.events.label')}</span>

src/pages/join-us.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ const channelStats = communicationChannels.length;
131131
href="/contact"
132132
class="group relative p-6 bg-base-100 rounded-2xl border border-base-300 hover:border-primary/30 hover:shadow-lg hover:shadow-primary/5 transition-all duration-300 text-center"
133133
>
134-
<div class="w-12 h-12 rounded-xl bg-primary/10 flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
134+
<div class="w-12 h-12 p-4 rounded-xl bg-primary/10 flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
135135
<Icon name="lucide:send" class="w-6 h-6 text-primary" />
136136
</div>
137137
<h3 class="font-semibold mb-2">{t('joinUs.contact.sendTitle')}</h3>
@@ -144,7 +144,7 @@ const channelStats = communicationChannels.length;
144144
rel="noopener noreferrer"
145145
class="group relative p-6 bg-base-100 rounded-2xl border border-base-300 hover:border-violet-500/30 hover:shadow-lg hover:shadow-violet-500/5 transition-all duration-300 text-center"
146146
>
147-
<div class="w-12 h-12 rounded-xl bg-violet-500/10 flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
147+
<div class="w-12 h-12 p-4 rounded-xl bg-violet-500/10 flex items-center justify-center mx-auto mb-4 group-hover:scale-110 transition-transform duration-300">
148148
<Icon name="lucide:message-square" class="w-6 h-6 text-violet-500" />
149149
</div>
150150
<h3 class="font-semibold mb-2">{t('joinUs.contact.discordTitle')}</h3>

0 commit comments

Comments
 (0)