Allow for theming of the notes addon panel

This commit is contained in:
Vince Picone 2019-03-06 09:28:02 -06:00 committed by GitHub
parent 8998c58d3e
commit 5655105435
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,12 +10,13 @@ import Markdown from 'markdown-to-jsx';
import { PARAM_KEY, API, Parameters } from './shared';
const Panel = styled.div({
const Panel = styled.div(({theme}) => {
padding: '3rem 40px',
boxSizing: 'border-box',
width: '100%',
maxWidth: 980,
margin: '0 auto',
...theme.addonNotesTheme
});
interface Props {