Merge pull request #6399 from antobinary/updated-packages-lock

Reorder controls for font size
This commit is contained in:
Anton Georgiev 2018-12-13 17:27:40 -05:00 committed by GitHub
commit 33f6d07cfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -221,17 +221,6 @@ class ApplicationMenu extends BaseMenu {
<div className={styles.col}>
<div className={cx(styles.formElement, styles.pullContentRight)}>
<div className={styles.pullContentRight}>
<div className={styles.col}>
<Button
onClick={() => this.handleIncreaseFontSize()}
color="primary"
icon="add"
circle
hideLabel
label={intl.formatMessage(intlMessages.increaseFontBtnLabel)}
disabled={isLargestFontSize}
/>
</div>
<div className={styles.col}>
<Button
onClick={() => this.handleDecreaseFontSize()}
@ -243,6 +232,17 @@ class ApplicationMenu extends BaseMenu {
disabled={isSmallestFontSize}
/>
</div>
<div className={styles.col}>
<Button
onClick={() => this.handleIncreaseFontSize()}
color="primary"
icon="add"
circle
hideLabel
label={intl.formatMessage(intlMessages.increaseFontBtnLabel)}
disabled={isLargestFontSize}
/>
</div>
</div>
</div>
</div>