forked from bitswired/rustgpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
26 lines (22 loc) · 709 Bytes
/
input.css
File metadata and controls
26 lines (22 loc) · 709 Bytes
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
/* Style for Webkit browsers like Chrome, Safari */
::-webkit-scrollbar {
width: 0.2rem; /* Thinner scrollbar */
}
::-webkit-scrollbar-track {
background: transparent; /* Optional: Transparent track */
}
::-webkit-scrollbar-thumb {
background-color: #6366f1; /* Tailwind indigo-500 color */
border-radius: 0.25rem; /* Optional: Rounded corners */
border: 3px solid transparent; /* Optional: Invisible border */
}
/* Style for Firefox */
* {
scrollbar-width: thin; /* Thinner scrollbar */
scrollbar-color: #6366f1 transparent; /* Tailwind indigo-500 color and transparent track */
}
}