Spaces:
Sleeping
Sleeping
File size: 837 Bytes
ea8faa4 80a65e4 ea8faa4 | 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 | @import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Vazirmatn', sans-serif;
direction: rtl;
text-align: right;
background-color: #f8fafc;
margin: 0;
padding: 0;
-webkit-tap-highlight-color: transparent;
user-select: none;
}
@keyframes screenSlideIn {
from {
opacity: 0;
transform: translateY(12px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-screen {
animation: screenSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
::-webkit-scrollbar {
width: 4px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: #cbd5e1;
border-radius: 4px;
} |