Skip to content

Commit 62fe3cf

Browse files
committed
fix style
1 parent faba213 commit 62fe3cf

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

app/pages/[year]/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ useHead({ title: `Vue Fes Japan ${year}` });
3838
:href="`https://vuefes.jp/${year}/`"
3939
target="_blank"
4040
rel="noopener noreferrer"
41-
class="text-[var(--ink-2)] no-underline group flex items-baseline gap-[4px]"
41+
class="inline-block text-[var(--ink-2)] no-underline group flex items-baseline gap-[4px]"
4242
>
4343
<span class="group-hover:underline">{{ t.official_site }}</span
4444
><span class="text-[10px]">({{ t.external }})</span>

app/pages/speakers/[name]/index.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,11 @@ useHead({ title: `${speakerName} 発表一覧` });
8383
<li
8484
v-for="(talk, i) in record.talks"
8585
:key="i"
86-
class="grid grid-cols-[40px_1fr] gap-x-[16px] items-baseline py-[14px] border-t border-[var(--rule-softer)]"
86+
class="grid grid-cols-[40px_1fr] gap-x-[16px] border-t border-[var(--rule-softer)] py-[18px]"
8787
>
88-
<span class="[font-family:var(--font-mono)] text-[11px] text-[var(--ink-3)]">
88+
<span
89+
class="[font-family:var(--font-mono)] text-[12px] text-[var(--ink-3)] text-center pt-[3px]"
90+
>
8991
<NuxtLink
9092
class="text-[var(--ink)] underline hover:no-underline"
9193
:to="`/${talk.year}`"
@@ -94,7 +96,7 @@ useHead({ title: `${speakerName} 発表一覧` });
9496
</span>
9597
<div class="flex flex-col gap-y-[8px]">
9698
<a
97-
class="text-[16px] text-[var(--ink)] no-underline group flex flex-wrap items-baseline gap-[4px]"
99+
class="text-[16px] text-[var(--ink)] no-underline group flex flex-wrap items-baseline gap-[8px]"
98100
:href="talk.url"
99101
target="_blank"
100102
rel="noopener noreferrer"

0 commit comments

Comments
 (0)