File size: 600 Bytes
ac4a6d6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  body {
    @apply bg-gray-950 text-gray-100 font-sans antialiased selection:bg-blue-600 selection:text-white;
  }
}

/* Minimalist Professional Box Styling */
@layer utilities {
  .border-box-dark {
    @apply border border-gray-800 dark:border-gray-800 bg-gray-900/90;
  }
}

/* Custom sleek scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #030712;
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
}
::-webkit-scrollbar-thumb:hover {
  background: #374151;
}