-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.css
42 lines (36 loc) · 1004 Bytes
/
globals.css
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
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/variable/pretendardvariable-dynamic-subset.css");
@import "tailwindcss";
:root {
font-family:
"Pretendard Variable", Pretendard, -apple-system,
BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
"Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
-webkit-text-size-adjust: 100%;
font-size: 16px;
}
.ProseMirror ul ul,
.ProseMirror ol ol,
.ProseMirror ul ol,
.ProseMirror ol ul {
@apply ml-6;
}
.ProseMirror ul li,
.ProseMirror ol li {
@apply relative;
}
.ProseMirror ul li::before,
.ProseMirror ol li::before {
@apply absolute;
@apply left-6;
}
.ProseMirror ul li ul li {
@apply list-[circle];
}
.ProseMirror ul li ul li ul li {
@apply list-[square];
}