Skip to content

Commit

Permalink
Fix dropdown transition
Browse files Browse the repository at this point in the history
  • Loading branch information
tillvit committed Sep 20, 2024
1 parent d6c4d76 commit c5e3cb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -1078,7 +1078,9 @@ input.right {
transform: translateY(-10px);
animation: 0.2s dropdown-enter cubic-bezier(0.175, 0.885, 0.32, 1.575)
forwards;
transition: height 0.07s cubic-bezier(0.215, 0.61, 0.355, 1);
transition-property: height, background;
transition-duration: 0.07s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.dropdown-item:hover {
Expand Down

0 comments on commit c5e3cb6

Please sign in to comment.