diff --git a/src/components/Button.js b/src/components/Button.js index b2e97b81a56c..d14d6db5b3a7 100644 --- a/src/components/Button.js +++ b/src/components/Button.js @@ -256,6 +256,7 @@ class Button extends Component { style={[ this.props.isDisabled ? {...styles.cursorDisabled, ...styles.noSelect} : {}, ...StyleUtils.parseStyleAsArray(this.props.style), + styles.buttonContainer, ]} nativeID={this.props.nativeID} > diff --git a/src/styles/styles.js b/src/styles/styles.js index a7fe3b763a7e..ddc9e9d64038 100644 --- a/src/styles/styles.js +++ b/src/styles/styles.js @@ -350,6 +350,11 @@ const styles = { ...spacing.ph3, }, + buttonContainer: { + padding: 1, + borderRadius: variables.buttonBorderRadius, + }, + buttonText: { color: themeColors.text, fontFamily: fontFamily.EXP_NEUE_BOLD,