| 1234567891011121314151617181920212223242526272829303132333435363738 |
- @import "tailwindcss";
- /* Loading spin animation */
- @keyframes pd-loading-spin {
- 0%,
- 100% {
- animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
- }
- 0% {
- transform: rotateY(0deg);
- }
- 50% {
- transform: rotateY(1800deg);
- animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
- }
- 100% {
- transform: rotateY(3600deg);
- }
- }
- /* Custom scrollbar styles */
- .custom-scrollbar::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- }
- .custom-scrollbar::-webkit-scrollbar-track {
- background-color: transparent;
- }
- .custom-scrollbar::-webkit-scrollbar-thumb {
- background-color: #d6dee1;
- border-radius: 8px;
- }
- .custom-scrollbar::-webkit-scrollbar-thumb:hover {
- background-color: #a8bbbf;
- }
|