Skip to content

Commit eba409b

Browse files
fix: migration hover/focus states (#20243)
Co-authored-by: ElevateBart <[email protected]>
1 parent 3331c62 commit eba409b

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

packages/launchpad/src/migration/fragments/MigrationStep.vue

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
<div
33
v-if="step"
44
:data-cy="`migration-step ${step?.name}`"
5-
class="border rounded bg-light-50 border-gray-100 mb-4 w-full block
6-
overflow-hidden hocus-default"
5+
class="border rounded bg-light-50 border-gray-100 mb-4 w-full block"
76
>
87
<ListRowHeader
98
:class="{
10-
'border-b border-b-gray-100 rounded-b-none': step.isCurrentStep,
9+
'rounded-b-none default-ring': step.isCurrentStep,
1110
'bg-gray-50': !step.isCurrentStep
1211
}"
13-
class="cursor-pointer"
12+
class="-m-1px w-auto"
1413
:description="description"
1514
@click="emit('toggle')"
1615
>
@@ -35,12 +34,6 @@
3534
{{ title }}
3635
</span>
3736
</template>
38-
<template #right>
39-
<i-cy-chevron-down
40-
:class="{ 'rotate-180': step.isCurrentStep }"
41-
class="max-w-16px transform icon-dark-gray-400"
42-
/>
43-
</template>
4437
</ListRowHeader>
4538
<div
4639
v-if="step.isCurrentStep"

0 commit comments

Comments
 (0)