mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
Add dropdown animation
Fixed issue causing mis-clicks
This commit is contained in:
parent
77d90b807e
commit
f991d5c87f
2 changed files with 3 additions and 2 deletions
|
@ -70,11 +70,11 @@
|
||||||
|
|
||||||
@keyframes menu-animate-in {
|
@keyframes menu-animate-in {
|
||||||
0% {
|
0% {
|
||||||
transform: scaleY(0);
|
transform: translateY(-100%);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
}
|
}
|
||||||
100% {
|
100% {
|
||||||
transform: scaleY(1);
|
transform: translateY(0);
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
font-size: var(--font-body);
|
font-size: var(--font-body);
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
[data-reach-menu-list] {
|
[data-reach-menu-list] {
|
||||||
|
|
Loading…
Add table
Reference in a new issue