fix: migration hover/focus states (#20243)

Co-authored-by: ElevateBart <ledouxb@gmail.com>
This commit is contained in:
Zachary Williams
2022-02-17 14:28:37 -06:00
committed by GitHub
parent 3331c625c2
commit eba409b8f9

View File

@@ -2,15 +2,14 @@
<div
v-if="step"
:data-cy="`migration-step ${step?.name}`"
class="border rounded bg-light-50 border-gray-100 mb-4 w-full block
overflow-hidden hocus-default"
class="border rounded bg-light-50 border-gray-100 mb-4 w-full block"
>
<ListRowHeader
:class="{
'border-b border-b-gray-100 rounded-b-none': step.isCurrentStep,
'rounded-b-none default-ring': step.isCurrentStep,
'bg-gray-50': !step.isCurrentStep
}"
class="cursor-pointer"
class="-m-1px w-auto"
:description="description"
@click="emit('toggle')"
>
@@ -35,12 +34,6 @@
{{ title }}
</span>
</template>
<template #right>
<i-cy-chevron-down
:class="{ 'rotate-180': step.isCurrentStep }"
class="max-w-16px transform icon-dark-gray-400"
/>
</template>
</ListRowHeader>
<div
v-if="step.isCurrentStep"