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

Commit

Permalink
fix(ui): smaller processing button spinner
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Sep 10, 2019
1 parent 04d839a commit 0bab91a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/components/UI/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Button = React.forwardRef((props, ref) => {
>
{isProcessing || Icon ? (
<Flex alignItems="center" justifyContent="center">
{isProcessing ? <Spinner /> : Icon && <Icon />}
{isProcessing ? <Spinner height="0.8em" width="0.8em" /> : Icon && <Icon />}
<Box fontSize={fontSize} fontWeight={fontWeight} ml={2}>
{children}
</Box>
Expand Down

0 comments on commit 0bab91a

Please sign in to comment.