Spaces:
Running
Running
File size: 994 Bytes
a0c1ef5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
@import "tailwindcss";
/* Custom scrollbar styles */
.scrollbar-thin::-webkit-scrollbar {
width: 0.5rem; /* Equivalent to w-2 in Tailwind */
}
.scrollbar-thin::-webkit-scrollbar-track {
border-radius: 9999px; /* Equivalent to rounded-full in Tailwind */
background-color: #f3f4f6; /* Equivalent to bg-gray-100 in Tailwind */
}
.scrollbar-thin::-webkit-scrollbar-track.dark {
background-color: #374151; /* Equivalent to dark:bg-gray-700 in Tailwind */
}
.scrollbar-thin::-webkit-scrollbar-thumb {
border-radius: 9999px; /* Equivalent to rounded-full in Tailwind */
background-color: #d1d5db; /* Equivalent to bg-gray-300 in Tailwind */
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
background-color: #6b7280; /* Equivalent to bg-gray-500 in Tailwind */
}
/* Animation delay classes */
.animation-delay-200 {
animation-delay: 200ms;
}
.animation-delay-400 {
animation-delay: 400ms;
}
/* Overflow wrap class */
.overflow-wrap-anywhere {
overflow-wrap: anywhere;
}
|