Skip to content

Commit 21abf43

Browse files
committed
feat: scroll and system-messages styles
1 parent 8309501 commit 21abf43

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

apps/web/app/globals.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
11
@import "tailwindcss";
22
@import "@repo/tailwind-config";
33
@import "@repo/ui/styles.css";
4+
5+
/* Custom scrollbar styles */
6+
::-webkit-scrollbar {
7+
width: 8px;
8+
}
9+
10+
::-webkit-scrollbar-track {
11+
background: transparent;
12+
}
13+
14+
::-webkit-scrollbar-thumb {
15+
background: #888;
16+
border-radius: 4px;
17+
}
18+
19+
::-webkit-scrollbar-thumb:hover {
20+
background: #555;
21+
}
22+
23+
/* System markdown styles */
24+
.system-message-styles p + p {
25+
@apply mt-3;
26+
}

0 commit comments

Comments
 (0)