|
.sort-icon {
|
|
display: inline-block;
|
|
width: 1em;
|
|
}
|
|
|
|
|
|
::-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;
|
|
}
|
|
|
|
|
|
@keyframes pulse {
|
|
0% {
|
|
opacity: 0.6;
|
|
}
|
|
50% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.loading-pulse {
|
|
animation: pulse 1.5s infinite;
|
|
}
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
table th, table td {
|
|
padding: 0.5rem 0.25rem;
|
|
font-size: 0.75rem;
|
|
}
|
|
}
|
|
|
|
|
|
.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;
|
|
}
|
|
|