cluster: allow tab navigation

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/953/head
Varun Patil 2023-11-21 10:16:46 -08:00
parent 7af24512d9
commit 3fe9fdc363
1 changed files with 7 additions and 0 deletions

View File

@ -2,6 +2,8 @@
<component
:is="link ? 'router-link' : 'div'"
draggable="false"
tabindex="1"
:aria-label="title"
class="cluster fill-block"
:class="{ error }"
:to="target"
@ -200,6 +202,11 @@ img {
.count-bubble :deep .counter-bubble__counter {
color: unset !important;
}
// Move focus outline inwards
&:focus {
outline-offset: -4px;
}
}
$namemargin: 10px;