Skip to content

Commit

Permalink
fix(stepper-item): remove delay in highlighting item (#8996)
Browse files Browse the repository at this point in the history
**Related Issue:** #6482

## Summary
Removed delay in highlighting a stepper item.
  • Loading branch information
josercarcamo committed Apr 3, 2024
1 parent 1280ec7 commit bcf23dd
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@
grid-row: items;

&:focus {
@apply focus-outset;
@apply focus-outset duration-0;
}
}

Expand All @@ -276,6 +276,12 @@
}
}

:host([layout="vertical"]) {
.stepper-item-header:focus {
@apply duration-0;
}
}

:host([layout="horizontal"][disabled]),
:host([layout="horizontal-single"][disabled]) {
.stepper-item-header {
Expand Down

0 comments on commit bcf23dd

Please sign in to comment.