-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProse.tsx
97 lines (81 loc) · 2.15 KB
/
Prose.tsx
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import { css } from '~css/css'
interface ProseProps {
children: React.ReactNode
}
const Prose = ({ children, ...rest }: ProseProps) => {
return (
<div
{...rest}
className={css({
color: 'slate.11',
'& :is(h2, h3, h4, h5, h6)': {
fontWeight: 'medium',
fontSize: 'lg',
color: 'slate.12',
marginBlockStart: '10',
},
'& * + :is(p, ul, ol, dl, blockquote:not([class]), address, fieldset, [data-rehype-pretty-code-figure])':
{
marginBlockStart: '6',
},
'& > :first-child': {
marginBlockStart: '0',
},
'& > :last-child': {
marginBlockEnd: '0',
},
'& a:not([class])': {
color: 'slate.12',
textDecorationLine: 'underline',
textUnderlineOffset: '4',
textDecorationStyle: 'dotted',
transitionProperty: 'all',
transitionDuration: 'fast',
transitionTimingFunction: 'default',
_hover: {
textUnderlineOffset: '6',
},
},
'& ol': {
paddingInlineStart: '4',
counterReset: 'list-counter',
'& li': {
position: 'relative',
counterIncrement: 'list-counter',
paddingInlineStart: '7',
_before: {
content: 'counter(list-counter) "."',
position: 'absolute',
insetInlineStart: '1',
fontWeight: 'medium',
},
},
},
'& li': {
marginBlock: '2',
},
'& ul': {
paddingInlineStart: '4',
'& > li': {
position: 'relative',
paddingInlineStart: '7',
_before: {
content: '""',
position: 'absolute',
insetInlineStart: '1',
insetBlockStart: '2',
width: '2',
height: '2',
borderRadius: 'full',
backgroundColor: 'slate.9',
boxShadow: 'slate',
},
},
},
})}
>
{children}
</div>
)
}
export default Prose