Skip to content

Commit

Permalink
fix(index): prevent list link overlap
Browse files Browse the repository at this point in the history
  • Loading branch information
dargmuesli committed Jan 19, 2023
1 parent 7f1acaf commit efa553c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@
</section>
<section>
<h2 class="text-2xl">{{ t('organizations') }}</h2>
<ul class="mt-2 list-inside list-disc">
<ul class="mt-2 flex flex-col gap-1 list-inside list-disc">
<!-- eslint-disable @intlify/vue-i18n/no-raw-text -->
<li>
<a href="https://gi.de/">{{ t('gi') }}</a>
Expand All @@ -178,7 +178,7 @@
</section>
<section>
<h2 class="text-2xl">{{ t('languages') }}</h2>
<ul class="mt-2 list-inside list-disc">
<ul class="mt-2 flex flex-col gap-1 list-inside list-disc">
<!-- eslint-disable @intlify/vue-i18n/no-raw-text -->
<li>
<span>{{ t('german') }}</span>
Expand All @@ -197,7 +197,7 @@
</section>
<section>
<h2 class="text-2xl">{{ t('honorsAwards') }}</h2>
<ul class="mt-2 list-inside list-disc">
<ul class="mt-2 flex flex-col gap-1 list-inside list-disc">
<li>
<i18n-t keypath="categoryItem">
<template #title>
Expand Down

0 comments on commit efa553c

Please sign in to comment.