27 lines
500 B
CSS
27 lines
500 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
.overflow-hidden-scrollable {
|
|
-ms-overflow-style: none;
|
|
}
|
|
|
|
.overflow-hidden-scrollable::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@layer utilities {
|
|
@keyframes high-bounce {
|
|
0%,
|
|
100% {
|
|
transform: translateY(0);
|
|
animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
|
|
}
|
|
50% {
|
|
transform: translateY(-9px);
|
|
animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
}
|
|
}
|
|
}
|