Skip to content

Commit 4765ef1

Browse files
committed
style: add spacing around keyboard shortcut
1 parent e45e548 commit 4765ef1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/components/Button/Base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ defineExpose({
6060
<slot />
6161
<kbd
6262
v-if="keyshortcut"
63-
class="inline-flex items-center justify-center w-4 h-4 text-xs text-fg bg-bg-muted border border-border rounded no-underline"
63+
class="ms-2 inline-flex items-center justify-center w-4 h-4 text-xs text-fg bg-bg-muted border border-border rounded no-underline"
6464
aria-hidden="true"
6565
>
6666
{{ keyshortcut }}

app/components/Link/Base.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const isButtonMedium = computed(() => props.size === 'medium' && props.variant !
111111
/>
112112
<kbd
113113
v-if="keyshortcut"
114-
class="inline-flex items-center justify-center w-4 h-4 text-xs text-fg bg-bg-muted border border-border rounded no-underline"
114+
class="ms-2 inline-flex items-center justify-center w-4 h-4 text-xs text-fg bg-bg-muted border border-border rounded no-underline"
115115
aria-hidden="true"
116116
>
117117
{{ keyshortcut }}

0 commit comments

Comments
 (0)