fix: shortcut key size
This commit is contained in:
parent
62b11fcec8
commit
b522ae9e05
4 changed files with 13 additions and 10 deletions
|
|
@ -517,9 +517,10 @@ pre.ace_editor {
|
||||||
@apply bg-dividerLight;
|
@apply bg-dividerLight;
|
||||||
@apply rounded;
|
@apply rounded;
|
||||||
@apply ml-2;
|
@apply ml-2;
|
||||||
@apply px-1;
|
@apply px-0.5;
|
||||||
@apply min-w-[1.25rem];
|
@apply min-w-[1rem];
|
||||||
@apply min-h-[1.25rem];
|
@apply min-h-[1rem];
|
||||||
|
@apply leading-none;
|
||||||
@apply items-center;
|
@apply items-center;
|
||||||
@apply justify-center;
|
@apply justify-center;
|
||||||
@apply border border-dividerDark;
|
@apply border border-dividerDark;
|
||||||
|
|
|
||||||
|
|
@ -582,9 +582,10 @@ pre.ace_editor {
|
||||||
@apply bg-dividerLight;
|
@apply bg-dividerLight;
|
||||||
@apply rounded;
|
@apply rounded;
|
||||||
@apply ml-2;
|
@apply ml-2;
|
||||||
@apply px-1;
|
@apply px-0.5;
|
||||||
@apply min-w-[1.25rem];
|
@apply min-w-[1rem];
|
||||||
@apply min-h-[1.25rem];
|
@apply min-h-[1rem];
|
||||||
|
@apply leading-none;
|
||||||
@apply items-center;
|
@apply items-center;
|
||||||
@apply justify-center;
|
@apply justify-center;
|
||||||
@apply border border-dividerDark;
|
@apply border border-dividerDark;
|
||||||
|
|
|
||||||
|
|
@ -572,9 +572,10 @@ pre.ace_editor {
|
||||||
@apply bg-dividerLight;
|
@apply bg-dividerLight;
|
||||||
@apply rounded;
|
@apply rounded;
|
||||||
@apply ml-2;
|
@apply ml-2;
|
||||||
@apply px-1;
|
@apply px-0.5;
|
||||||
@apply min-w-[1.25rem];
|
@apply min-w-[1rem];
|
||||||
@apply min-h-[1.25rem];
|
@apply min-h-[1rem];
|
||||||
|
@apply leading-none;
|
||||||
@apply items-center;
|
@apply items-center;
|
||||||
@apply justify-center;
|
@apply justify-center;
|
||||||
@apply border border-dividerDark;
|
@apply border border-dividerDark;
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@
|
||||||
class="items-center self-center ml-6 -mr-2 svg-icons"
|
class="items-center self-center ml-6 -mr-2 svg-icons"
|
||||||
:class="{ 'text-accent': activeInfoIcon }"
|
:class="{ 'text-accent': activeInfoIcon }"
|
||||||
/>
|
/>
|
||||||
<div v-if="shortcut.length" class="ml-4 <sm:hidden font-medium">
|
<div v-if="shortcut.length" class="ml-4 inline-flex <sm:hidden font-medium">
|
||||||
<kbd
|
<kbd
|
||||||
v-for="(key, index) in shortcut"
|
v-for="(key, index) in shortcut"
|
||||||
:key="`key-${index}`"
|
:key="`key-${index}`"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue