Darker source editor

This commit is contained in:
Lukas Martinelli
2016-12-21 16:50:34 +01:00
parent ee4bcc4c0b
commit 29bf0c2b61
7 changed files with 38 additions and 47 deletions
+5 -4
View File
@@ -18,13 +18,14 @@ class Modal extends React.Component {
<div style={{
minWidth: 350,
maxWidth: 600,
backgroundColor: colors.gray,
backgroundColor: colors.black,
boxShadow: '0px 0px 5px 0px rgba(0,0,0,0.3)',
}}>
<div style={{
backgroundColor: colors.midgray,
backgroundColor: colors.gray,
display: 'flex',
flexDirection: 'row',
padding: margins[1],
padding: margins[2],
fontSize: fontSizes[4],
}}>
{this.props.title}
@@ -36,7 +37,7 @@ class Modal extends React.Component {
</a>
</div>
<div style={{
padding: margins[1]
padding: margins[2],
}}>
{this.props.children}
</div>