1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-11-15 09:44:53 +01:00

menu expanded trigger animation

This commit is contained in:
Matthias Kretschmann 2020-09-10 15:38:03 +02:00
parent 87b0e65b98
commit b635fcbc7a
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,7 @@
.icon {
fill: var(--brand-grey-light);
transition: fill 0.2s ease-out;
transition: 0.2s ease-out;
}
.preferences:hover .icon,
@ -16,6 +16,10 @@
fill: var(--brand-grey);
}
.preferences[aria-expanded='true'] .icon {
transform: rotate(180deg);
}
.preferencesDetails {
padding: calc(var(--spacer) / 2);
}

View File

@ -55,7 +55,7 @@
transition: transform 0.2s ease-out;
}
.wallet[aria-expanded='true'] .button svg {
[aria-expanded='true'] .button svg {
transform: rotate(180deg);
}