diff --git a/packages/theme/styles/_layouts.scss b/packages/theme/styles/_layouts.scss index 1e2e13927c..53dde57365 100644 --- a/packages/theme/styles/_layouts.scss +++ b/packages/theme/styles/_layouts.scss @@ -30,12 +30,14 @@ a { } &:visited { color: var(--theme-caption-color); } + &.stealth, + &.no-underline { + &:hover, &:active { text-decoration: none; } + } &.stealth { display: inline-flex; align-items: center; width: 100%; - - &:hover, &:active { text-decoration: none; } } } button { diff --git a/packages/ui/src/components/ExpandCollapse.svelte b/packages/ui/src/components/ExpandCollapse.svelte index b4bf282986..edb6375679 100644 --- a/packages/ui/src/components/ExpandCollapse.svelte +++ b/packages/ui/src/components/ExpandCollapse.svelte @@ -31,7 +31,7 @@ $: tweenedHeight.set(isExpanded ? height : 0, { duration, easing }) -