File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ const components: MDXComponents = {
1010 return < Typography component = { 'h1' } variant = "h4" gutterBottom { ...props } > { children } </ Typography > ;
1111 } ,
1212 h2 : ( { children, ...props } ) => {
13- return < Typography component = { 'h2' } variant = "h5" gutterBottom { ...props } > { children } </ Typography > ;
13+ return < Typography component = { 'h2' } variant = "h5" gutterBottom sx = { { mt : 3 } } { ...props } > { children } </ Typography > ;
1414 } ,
1515 h3 : ( { children, ...props } ) => {
16- return < Typography component = { 'h3' } variant = "h6" gutterBottom { ...props } > { children } </ Typography > ;
16+ return < Typography component = { 'h3' } variant = "h6" gutterBottom sx = { { mt : 2 } } { ...props } > { children } </ Typography > ;
1717 } ,
1818 h4 : ( { children, ...props } ) => {
19- return < Typography component = { 'h4' } variant = "h6" fontWeight = { 400 } borderBottom = { "black solid 1px" } gutterBottom { ...props } > { children } </ Typography > ;
19+ return < Typography component = { 'h4' } variant = "h6" fontWeight = { 400 } borderBottom = { "black solid 1px" } gutterBottom { ...props } > { children } </ Typography > ;
2020 } ,
2121 h5 : ( { children, ...props } ) => {
2222 return < Typography component = { 'h5' } variant = "h6" fontWeight = { 300 } gutterBottom { ...props } > { children } </ Typography > ;
You can’t perform that action at this time.
0 commit comments