Skip to content

Commit bc47aee

Browse files
committed
fix: minor fixes
1 parent 1a73f88 commit bc47aee

2 files changed

Lines changed: 3 additions & 13 deletions

File tree

app/components/AppHeader.vue

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -152,22 +152,12 @@ onKeyStroke(
152152
<!-- End: Desktop nav items + Mobile menu button -->
153153
<div class="flex-shrink-0 flex items-center gap-0.5 sm:gap-2">
154154
<!-- Desktop: Compare link -->
155-
<LinkBase
156-
variant="button-secondary"
157-
to="/compare"
158-
class="inline-flex items-center gap-2"
159-
keyshortcut="c"
160-
>
155+
<LinkBase variant="button-secondary" to="/compare" keyshortcut="c">
161156
{{ $t('nav.compare') }}
162157
</LinkBase>
163158

164159
<!-- Desktop: Settings link -->
165-
<LinkBase
166-
variant="button-secondary"
167-
to="/settings"
168-
class="inline-flex items-center gap-2"
169-
keyshortcut=","
170-
>
160+
<LinkBase variant="button-secondary" to="/settings" keyshortcut=",">
171161
{{ $t('nav.settings') }}
172162
</LinkBase>
173163

app/pages/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ defineOgImageComponent('Default', {
123123
<li v-for="framework in SHOWCASED_FRAMEWORKS" :key="framework.name">
124124
<LinkBase
125125
:to="{ name: 'package', params: { package: [framework.package] } }"
126-
class="inline-flex items-center gap-2 group"
126+
class="gap-2"
127127
>
128128
<span
129129
class="w-1 h-1 rounded-full bg-accent group-hover:bg-fg transition-colors duration-200"

0 commit comments

Comments
 (0)