diff --git a/src/ui/components/Markdown.tsx b/src/ui/components/Markdown.tsx index e4e0993ba..831ff4a0a 100644 --- a/src/ui/components/Markdown.tsx +++ b/src/ui/components/Markdown.tsx @@ -7,13 +7,15 @@ * @format */ -import React, {PureComponent, RefObject} from 'react'; +import React, {PureComponent} from 'react'; import styled from 'react-emotion'; import ReactMarkdown from 'react-markdown'; -import ReactDOM from 'react-dom'; import {colors} from './colors'; import {shell} from 'electron'; +const Container = styled('div')({ + padding: 10, +}); const Row = styled('div')({ marginTop: 5, marginBottom: 5, @@ -75,20 +77,22 @@ class LinkReference extends PureComponent<{href: string}> { export function Markdown(props: {source: string}) { return ( - + + + ); }