saq1b's picture
Upload 4 files
b61cc42 verified
raw
history blame
1.05 kB
.sort-icon {
display: inline-block;
width: 1em;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Animation for loading state */
@keyframes pulse {
0% {
opacity: 0.6;
}
50% {
opacity: 1;
}
100% {
opacity: 0.6;
}
}
.loading-pulse {
animation: pulse 1.5s infinite;
}
/* Responsive table adjustments */
@media (max-width: 640px) {
table th, table td {
padding: 0.5rem 0.25rem;
font-size: 0.75rem;
}
}
/* Enhance transition effects */
.hover\:bg-gray-50:hover {
background-color: #f9fafb;
transition: background-color 0.2s ease;
}
th.hover\:bg-gray-200:hover {
background-color: #e5e7eb;
transition: background-color 0.2s ease;
}