feat: add dropdown to select preview port (#17)

This commit is contained in:
Connor Fogarty
2024-08-20 02:17:34 -05:00
committed by GitHub
parent 5f06f508cd
commit f55b4e5ab9
4 changed files with 140 additions and 6 deletions

View File

@@ -34,3 +34,16 @@
transform: translate3d(100%, 0, 0);
}
}
.dropdown-animation {
opacity: 0;
animation: fadeMoveDown 0.15s forwards;
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeMoveDown {
to {
opacity: 1;
transform: translateY(6px);
}
}