diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-03-20 22:30:00 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-03-20 22:30:00 +0100 |
| commit | daa1060ce3f953a767b88a1108185a9554d91649 (patch) | |
| tree | 46cf4eefc337faf2314dee9df03ab4b08a4a9efc /frontend/app/common/form.component.js | |
| parent | 19cf3a296741b92548849b1f40e0d3cc517f2fcc (diff) | |
form styling
Diffstat (limited to 'frontend/app/common/form.component.js')
| -rw-r--r-- | frontend/app/common/form.component.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/app/common/form.component.js b/frontend/app/common/form.component.js index 927b89d..d0ebea3 100644 --- a/frontend/app/common/form.component.js +++ b/frontend/app/common/form.component.js @@ -71,7 +71,7 @@ export const TextArea = props => ( ) export const Checkbox = props => ( - <label className="checkbox"> + <label className={props.className ? props.className + " checkbox" : "checkbox"}> <input type="checkbox" name={props.name} |
