blob: 3d7b9db7af9a61dd3c960a86319253f12bf0159a (
plain)
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
|
@import "@opencode-ai/ui/styles/tailwind";
:root {
a {
cursor: default;
}
}
[data-component="markdown"] ul {
list-style: disc outside;
padding-left: 1.5rem;
}
[data-component="markdown"] ol {
list-style: decimal outside;
padding-left: 1.5rem;
}
[data-component="markdown"] li > p:first-child {
display: inline;
margin: 0;
}
[data-component="markdown"] li > p + p {
display: block;
margin-top: 0.5rem;
}
*[data-tauri-drag-region] {
app-region: drag;
}
.session-scroller::-webkit-scrollbar {
width: 10px !important;
height: 10px !important;
}
.session-scroller::-webkit-scrollbar-track {
background: transparent !important;
border-radius: 5px !important;
}
.session-scroller::-webkit-scrollbar-thumb {
background: var(--border-weak-base) !important;
border-radius: 5px !important;
border: 3px solid transparent !important;
background-clip: padding-box !important;
}
.session-scroller::-webkit-scrollbar-thumb:hover {
background: var(--border-weak-base) !important;
}
.session-scroller {
scrollbar-width: thin !important;
scrollbar-color: var(--border-weak-base) transparent !important;
}
|