Spaces:
Running
Running
File size: 938 Bytes
331ec81 0251015 331ec81 0251015 331ec81 0251015 331ec81 0251015 331ec81 0251015 331ec81 0251015 331ec81 | 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 40 41 42 43 44 45 46 47 48 49 50 51 52 | /* Custom Scrollbar */
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
.dark ::-webkit-scrollbar-track {
background: #1e293b;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 5px;
}
.dark ::-webkit-scrollbar-thumb {
background: #475569;
}
::-webkit-scrollbar-thumb:hover {
background: #94a3b8;
}
/* Base Styles */
body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* RTL Handling Helpers */
[dir="rtl"] {
direction: rtl;
text-align: right;
}
[dir="rtl"] .feather {
margin-left: 0.5rem;
margin-right: 0;
}
[dir="ltr"] .feather {
margin-right: 0.5rem;
margin-left: 0;
}
/* Animation Classes */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
animation: fadeIn 0.8s ease-out forwards;
} |