diff options
author | Emiliano Ciavatta | 2020-09-27 16:43:27 +0000 |
---|---|---|
committer | Emiliano Ciavatta | 2020-09-27 16:43:27 +0000 |
commit | 7f4cc5d3f3f92338a464853c182b9d6a3ea850eb (patch) | |
tree | c3aad08a839a6bbc81a02b849b5b41ddc00844e9 /frontend/src/components/fields/ButtonField.js | |
parent | 1412a34f64e234dbc7d4e6815b841699f4dd104a (diff) |
Replaced the old fields with the new ones
Diffstat (limited to 'frontend/src/components/fields/ButtonField.js')
-rw-r--r-- | frontend/src/components/fields/ButtonField.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/src/components/fields/ButtonField.js b/frontend/src/components/fields/ButtonField.js index b32aee8..f2f02fd 100644 --- a/frontend/src/components/fields/ButtonField.js +++ b/frontend/src/components/fields/ButtonField.js @@ -31,6 +31,15 @@ class ButtonField extends Component { if (this.props.border) { buttonStyle["borderColor"] = this.props.border; } + if (this.props.fullSpan) { + buttonStyle["width"] = "100%"; + } + if (this.props.rounded) { + buttonStyle["borderRadius"] = "3px"; + } + if (this.props.inline) { + buttonStyle["marginTop"] = "8px"; + } return ( <div className={classNames( "field", "button-field", {"field-small": this.props.small})}> |