2
0
Files
bot/apps/landing-page/assets/style.css

20 lines
259 B
CSS
Raw Normal View History

.rounded-full {
border-radius: 99999px;
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-10px);
}
100% {
transform: translatey(0px);
}
}