From f6b8bbe5a6de420229adf74d29dbfe8d359ecfb8 Mon Sep 17 00:00:00 2001 From: Lukas Martinelli Date: Mon, 19 Dec 2016 11:33:47 +0100 Subject: [PATCH] Add missing checkbox style to input --- src/fields/input.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/fields/input.js b/src/fields/input.js index 06c6713f..ea541c03 100644 --- a/src/fields/input.js +++ b/src/fields/input.js @@ -30,6 +30,13 @@ const input = { color: theme.colors.lowgray, } +const checkbox = { + ...base, + border: '1px solid rgb(36, 36, 36)', + backgroundColor: theme.colors.gray, + color: theme.colors.lowgray, +} + const select = { ...input, width: '51%', @@ -41,4 +48,5 @@ export default { select, input, property, + checkbox, }