Skip to content
Open
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
6 changes: 3 additions & 3 deletions components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ const { getStarted, resources } = useActions('footerLinks')
<template>
<footer class="bg-brand-4 color-brand-3">
<div class="border-3 b-current rounded-10 px-6 py-5 md:rounded-20 md:pt-12">
<div class="grid cols-1 gap-6 text-xs lg:cols-3 sm:cols-2 sm:text-base">
<div class="grid cols-1 gap-6 text-xs lg:grid-cols-[auto_1fr_auto] md:cols-[auto_1fr] sm:text-base">
<div class="header">
<MailingListSignup />
</div>
<div class="header flex text-1.2em lg:justify-center">
<SocialNetworks class="items-center" icon-class="hover:color-brand-1 hover:scale-110" />
<div class="flex justify-start text-1.2em md:justify-center">
<SocialNetworks class="lg:justify-center" icon-class="hover:color-brand-1 hover:scale-110" />
</div>
<div>
<div class="grid cols-1 gap-6 lg:cols-2">
Expand Down
8 changes: 6 additions & 2 deletions components/SocialNetworks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,13 @@ const socialNetworks = useActions('socialNetworks')
</script>

<template>
<div class="flex gap-4">
<div class="h-fit flex flex-wrap gap-4">
<div v-for="n in socialNetworks" :key="n.name">
<AppLink :href="n.href" class="flex items-center justify-center transition" :class="iconClass">
<AppLink
:href="n.href"
class="min-h-[48px] min-w-[48px] flex items-center justify-center p-2 transition"
:class="iconClass"
>
<div :class="n.icon" :title="`${n.description} on ${n.name}`" />
</AppLink>
</div>
Expand Down