| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @import "tailwindcss";
- @custom-variant dark (&:where(.dark, .dark *));
- /* 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;
- }
- .dark .custom-scrollbar::-webkit-scrollbar-thumb {
- background-color: #4b5563;
- }
- .dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
- background-color: #6b7280;
- }
|