Skip to content

Commit

Permalink
UI(LiquidityIncentiveSetupModal): button improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
dovalid committed Jul 8, 2024
1 parent 582c510 commit 87e7bf7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const LiquidityIncentiveSetupModal = ({
<ModalBody className="custom-scrollbar">
<Text colorScheme="gray" fontWeight="semibold" mb="9">
Create a point-based incentive for liquidity providers. More liquidity
means more points. Set a custom conversion rate to fine-tune the rewards.
means more points. Set a custom conversion rate to fine-tune the rewards
</Text>

<Stepper
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ const SelectLiquidityPoolStep = ({ onContinue }: { onContinue: () => void }) =>
/>

<Button
mt={3}
mb={5}
ml="auto"
colorScheme={"indigo"}
isDisabled={
!!errors?.pool ||
Expand All @@ -171,8 +174,6 @@ const SelectLiquidityPoolStep = ({ onContinue }: { onContinue: () => void }) =>
isFetchingFromTokenId
}
onClick={onContinue}
mb={5}
mt={3}
>
Continue
</Button>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,12 @@ const SetLiquidityPointsRewardStep = ({
<Button
colorScheme={"green"}
onClick={onSubmit}
mb={5}
mt={3}
ml="auto"
mt={5}
isDisabled={isSubmitDisabled}
isLoading={isLoading}
>
Save
Create Liquidity Incentive role
</Button>
</Stack>
)
Expand Down

0 comments on commit 87e7bf7

Please sign in to comment.