Only animate the dropdown svg if last child

This commit is contained in:
Prospector
2023-10-20 08:20:33 -07:00
committed by GitHub
parent a3d4db9fc1
commit b68799e2d1

View File

@@ -488,12 +488,12 @@ a,
}
&.btn-dropdown-animation {
svg {
svg:last-child {
transition: transform 0.125s ease-in-out;
}
&.popout-open {
svg {
svg:last-child {
transform: rotate(180deg);
}
}