Skip to content

Commit

Permalink
Fix new footer (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaskempf57 authored Jan 13, 2025
1 parent dbca4c9 commit 3888d9c
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions components/SiteFooter/SiteFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,25 +45,25 @@
</div>
</div>
<div class="w-full md:pl-[8%] md:w-1/3">
<div class="fr-follow__social">
<div class="flex flex-col items-start justify-between h-full">
<p class="font-extrabold text-2xl leading-8 text-gray-title">
{{ $t("Follow us") }}
<br> {{ $t("on social media") }}
</p>
<ul class="flex justify-between list-none m-0 p-0 *:p-0">
<ul class="flex justify-between list-none m-0 p-0 *:p-0 -ml-4">
<li>
<a
class="fr-link !inline-flex after:!content-none"
class="link !inline-flex after:!content-none mx-2 !p-2 min-h-10 mh-10 mw-10 !no-underline"
:title="$t('Twitter - new tab')"
href="https://twitter.com/datagouvfr"
target="_blank"
>
<RiTwitterXLine />
<RiTwitterLine />
</a>
</li>
<li>
<a
class="fr-link !inline-flex after:!content-none"
class="link !inline-flex after:!content-none mx-2 !p-2 min-h-10 mh-10 mw-10 !no-underline"
:title="$t('Linkedin - new tab')"
href="https://www.linkedin.com/company/data-gouv-fr/"
target="_blank"
Expand All @@ -73,7 +73,7 @@
</li>
<li>
<a
class="fr-link !inline-flex after:!content-none"
class="link !inline-flex after:!content-none mx-2 !p-2 min-h-10 mh-10 mw-10 !no-underline"
:title="$t('Mastodon - new tab')"
href="https://social.numerique.gouv.fr/@datagouvfr"
target="_blank"
Expand All @@ -83,7 +83,7 @@
</li>
<li>
<a
class="fr-link !inline-flex after:!content-none"
class="link !inline-flex after:!content-none mx-2 !p-2 min-h-10 mh-10 mw-10 !no-underline"
:title="$t('Github - new tab')"
href="https://github.com/datagouv/data.gouv.fr"
target="_blank"
Expand All @@ -93,7 +93,7 @@
</li>
<li>
<NuxtLinkLocale
class="fr-link !inline-flex after:!content-none"
class="link !inline-flex after:!content-none mx-2 !p-2 min-h-10 mh-10 mw-10 !no-underline"
:title="$t('RSS - new tab')"
to="datasets/recent.atom"
:external="true"
Expand All @@ -116,7 +116,7 @@
<div class="fr-container">
<div class="fr-grid-row fr-grid-row--start fr-grid-row--gutters">
<div class="fr-col-12 fr-col-sm-3">
<h3 class="fr-footer__top-cat">
<h3 class="fr-footer__top-cat !text-xs !leading-5 !mb-3">
{{ $t('Open Data') }}
</h3>
<ul class="fr-footer__top-list">
Expand All @@ -132,7 +132,7 @@
</ul>
</div>
<div class="fr-col-12 fr-col-sm-3">
<h3 class="fr-footer__top-cat">
<h3 class="fr-footer__top-cat !text-xs !leading-5 !mb-3">
{{ $t('Platform') }}
</h3>
<ul class="fr-footer__top-list">
Expand All @@ -148,7 +148,7 @@
</ul>
</div>
<div class="fr-col-12 fr-col-sm-3">
<h3 class="fr-footer__top-cat">
<h3 class="fr-footer__top-cat !text-xs !leading-5 !mb-3">
{{ $t('Resources') }}
</h3>
<ul class="fr-footer__top-list">
Expand All @@ -164,7 +164,7 @@
</ul>
</div>
<div class="fr-col-12 fr-col-sm-3">
<h3 class="fr-footer__top-cat">
<h3 class="fr-footer__top-cat !text-xs !leading-5 !mb-3">
{{ $t('Development') }}
</h3>
<ul class="fr-footer__top-list">
Expand Down Expand Up @@ -213,7 +213,7 @@
href="/"
:title="$t('Go back to website home - data.gouv.fr - République Française')"
>
<SiteLogo />
<SiteLogo class="text-gray-logo text-xl tracking-wide" />
</a>
</div>
<div class="fr-footer__content">
Expand Down Expand Up @@ -307,7 +307,7 @@
</template>

<script setup lang="ts">
import { RiGithubLine, RiLinkedinBoxLine, RiMastodonLine, RiRssLine, RiTwitterXLine } from '@remixicon/vue'
import { RiGithubLine, RiLinkedinBoxLine, RiMastodonLine, RiRssLine, RiTwitterLine } from '@remixicon/vue'
const config = useRuntimeConfig()
Expand Down

0 comments on commit 3888d9c

Please sign in to comment.