File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 57
57
"eslint-config-prettier" : " ^6.10.1" ,
58
58
"eslint-plugin-prettier" : " ^3.1.2" ,
59
59
"eslint-plugin-react" : " ^7.19.0" ,
60
- "nodegit" : " ^0.26.5" ,
61
60
"postcss-nested" : " ^4.2.1" ,
62
61
"postcss-nesting" : " ^7.0.1" ,
63
62
"prettier" : " ^2.0.4" ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ type Props = {
29
29
body : string ;
30
30
} ;
31
31
32
- const text = 'font-thin leading-loose' ;
32
+ const text = 'leading-loose' ;
33
33
34
34
const components = {
35
35
// Headings
@@ -66,7 +66,7 @@ const components = {
66
66
67
67
// Text
68
68
p : ( { children } : any ) => {
69
- return < p className = { cx ( 'my-4 font-light ' , text ) } > { children } </ p > ;
69
+ return < p className = { cx ( 'my-4' , text ) } > { children } </ p > ;
70
70
} ,
71
71
72
72
// Code
@@ -76,9 +76,9 @@ const components = {
76
76
} ,
77
77
78
78
// Lists
79
- ul : ( props : any ) => < ul { ...props } className = "list-disc list-inside pl-4 font-light " /> ,
80
- ol : ( props : any ) => < ul { ...props } className = "list-decimal list-inside pl-4 font-light " /> ,
81
- li : ( props : any ) => < li { ...props } className = { cx ( 'mb-2 font-light ' , text ) } /> ,
79
+ ul : ( props : any ) => < ul { ...props } className = "list-disc list-inside pl-4" /> ,
80
+ ol : ( props : any ) => < ul { ...props } className = "list-decimal list-inside pl-4" /> ,
81
+ li : ( props : any ) => < li { ...props } className = { cx ( 'mb-2' , text ) } /> ,
82
82
83
83
// Table
84
84
table : ( props : any ) => (
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ main a:hover {
22
22
23
23
main p ,
24
24
main li {
25
- @apply text-gray-600 ;
25
+ @apply text-gray-800 ;
26
26
}
27
27
28
28
li code ,
@@ -71,7 +71,6 @@ h6 code {
71
71
padding : 0 6px ;
72
72
}
73
73
74
-
75
74
.parameter {
76
75
@apply text-blue-500;
77
76
}
You can’t perform that action at this time.
0 commit comments