Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(ui): make sure channel create button doesn't overflow
Browse files Browse the repository at this point in the history
fix #2989
  • Loading branch information
bolatovumar committed Oct 16, 2019
1 parent d5dda10 commit d50efc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer/components/Channels/ChannelCreateForm.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ const ShowHide = Keyframes.Spring({

const FormButtons = ({ isNextButtonDisabled, nextButtonText, onBack }) => (
<Flex alignItems="center" mb={3}>
<Box width={1 / 4}>
<Box width={1 / 6}>
<ChannelBackButton mr="auto" onClick={onBack} />
</Box>
<Flex justifyContent="center" width={2 / 4}>
<Flex justifyContent="center" width={4 / 6}>
<Button isDisabled={isNextButtonDisabled} type="submit">
{nextButtonText}
</Button>
Expand Down

0 comments on commit d50efc6

Please sign in to comment.