Skip to content

Commit

Permalink
Rotation of MM chevron persisted
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremythuff committed Sep 2, 2020
1 parent 7516c27 commit 04a3570
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions src/app/tl-mega-menu/tl-mega-menu.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,33 @@
justify-content: flex-end;
}

wvr-dropdown-element {
::ng-deep {
.wvr-dropdown .dropdown {
.btn {
tl-icon-element svg {
transition: 0.25s ease-in-out;
transform: rotate(0deg);
}
}
}
}
}

wvr-dropdown-element:hover {
::ng-deep {
.wvr-dropdown .dropdown {
.btn {
tl-icon-element svg {
transition: 0.25s ease-in-out;
transform: rotate(90deg);
}
}
}
}
}


::ng-deep {

tl-button-element {
Expand All @@ -15,12 +42,6 @@

.wvr-dropdown .dropdown {

.btn:hover {
tl-icon-element svg {
transform: rotate(90deg);
}
}

[ngbDropdownMenu] {
padding: 20px;
border: 1px solid var(--tl-grey);
Expand Down

0 comments on commit 04a3570

Please sign in to comment.