Add missing checkbox style to input

This commit is contained in:
Lukas Martinelli 2016-12-19 11:33:47 +01:00
parent e8c906e503
commit f6b8bbe5a6

View file

@ -30,6 +30,13 @@ const input = {
color: theme.colors.lowgray, color: theme.colors.lowgray,
} }
const checkbox = {
...base,
border: '1px solid rgb(36, 36, 36)',
backgroundColor: theme.colors.gray,
color: theme.colors.lowgray,
}
const select = { const select = {
...input, ...input,
width: '51%', width: '51%',
@ -41,4 +48,5 @@ export default {
select, select,
input, input,
property, property,
checkbox,
} }