File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/theme/ReferenceCodeBlock Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -11,9 +11,12 @@ const initialFetchResultState = {
1111}
1212
1313const noteStyle : React . CSSProperties = {
14- textAlign : 'right' ,
1514 fontSize : '.9em' ,
1615 fontWeight : 600 ,
16+ color : '#0E75DD' ,
17+ textAlign : 'center' ,
18+ paddingBottom : '13px' ,
19+ textDecoration : 'underline' ,
1720}
1821
1922/**
@@ -123,7 +126,7 @@ function ReferenceCode(props: ReferenceCodeBlockProps) {
123126 return (
124127 < div >
125128 < CodeBlock { ...customProps } > { fetchResultState . code } </ CodeBlock >
126- < div style = { noteStyle } > See full example on < a href = { props . children } target = "_blank" > GitHub</ a > </ div >
129+ < div style = { noteStyle } > < a href = { props . children } target = "_blank" > See full example on GitHub</ a > </ div >
127130 </ div >
128131 ) ;
129132}
You can’t perform that action at this time.
0 commit comments