File size: 1,356 Bytes
a566fb0 |
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 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
css
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
* {
@apply border-border;
}
body {
@apply bg-background text-foreground;
font-feature-settings: "rlig" 1, "calt" 1;
}
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 12px;
height: 12px;
}
::-webkit-scrollbar-track {
background: linear-gradient(to bottom, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.8));
border-radius: 10px;
margin: 4px;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), rgba(168, 85, 247, 0.6));
border-radius: 10px;
border: 2px solid rgba(15, 23, 42, 0.3);
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(168, 85, 247, 0.8));
border: 2px solid rgba(59, 130, 246, 0.2);
}
/* Firefox scrollbar */
* {
scrollbar-width: thin;
scrollbar-color: rgba(99, 102, 241, 0.6) rgba(30, 41, 59, 0.5);
}
/* Smooth scrolling */
html {
scroll-behavior: smooth;
}
/* Button fixes */
button {
transition: all 0.2s ease;
}
button:disabled {
cursor: not-allowed !important;
opacity: 0.5 !important;
}
/* Remove default button styles that might cause white backgrounds */
button[type="button"],
button[type="submit"] {
background-color: transparent;
}
|