Skip to content

Commit

Permalink
transaction-details focus
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita-Polyakov committed Mar 19, 2024
1 parent bc744c5 commit be035b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/shared/TransactionDetails.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
trigger="click"
>
<template #reference>
<div :class="['transaction-details', { visible }]">
<div :class="['transaction-details', { visible }]" v-button>
<span>{{ t('transactionDetailsText') }}</span>
<s-icon :name="icon" size="16px" class="transaction-details-icon" />
</div>
Expand Down Expand Up @@ -59,7 +59,9 @@ export default class TransactionDetails extends Mixins(TranslationMixin) {
color: var(--s-color-theme-accent);
}
&:hover {
&:hover,
&:focus {
outline: none;
color: var(--s-color-theme-accent-hover);
.transaction-details-icon {
Expand Down

0 comments on commit be035b9

Please sign in to comment.