Skip to content
This repository has been archived by the owner on Aug 1, 2022. It is now read-only.

Commit

Permalink
fix: enable option transition only when not active
Browse files Browse the repository at this point in the history
Fixes #2086

Signed-off-by: Thomas Scholtes <thomas@monadic.xyz>
  • Loading branch information
Thomas Scholtes committed Jul 7, 2021
1 parent 472d1fe commit 2487af1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/DesignSystem/RadioOption.svelte
Expand Up @@ -45,7 +45,11 @@
}
</style>

<div class="option button-transition" class:active data-cy={dataCy}>
<div
class="option"
class:button-transition={!active}
class:active
data-cy={dataCy}>
<div class="header" on:click>
{#if title}
<p class="typo-text-bold" style="color: var(--color-foreground-level-6)">
Expand Down

0 comments on commit 2487af1

Please sign in to comment.