-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
60 lines (56 loc) · 1.17 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title></title>
<style>
* {
box-sizing: border-box;
}
#mount {
z-index: 9999;
}
li[role=option],
li[role=option] * {
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
overflow: hidden;
}
.sublime-modal {
width: 470px !important;
/* logseq left panel width: 246px */
/* logseq content width: 810px */
left: calc(246px + 0.5 * calc(100vw - 246px) - calc(0.5 * 130px)) !important;
margin: 0 !important;
transform: none !important;
}
.sublime-container {
font-weight: unset !important;
}
.sublime-input {
width: 100% !important;
}
.sublime-suggestion b {
font-weight: unset !important;
}
.sublime-suggestionsContainerOpen {
overflow-y: auto !important;
}
*::-webkit-scrollbar {
width: 12px;
}
*::-webkit-scrollbar-track {
background: transparent;
}
*::-webkit-scrollbar-thumb {
border-radius: 6px;
}
</style>
</head>
<body>
<div id="mount"></div>
<script type="module" src="src/main.tsx"></script>
</body>
</html>