Skip to content

Commit

Permalink
fix(staking): minor UI fixes on the migration modal (#3282)
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulnr7 authored Jun 5, 2024
1 parent c1b7f22 commit 8688530
Showing 1 changed file with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,19 @@ export const PoolTransitionModal = ({
<Space height="xl" />

<Actions>
<Button outline title={strings.skipNoRewards} textStyles={styles.outlineButton} onPress={handleOnSkip} />
<Button
outline
title={strings.skipNoRewards.toLocaleUpperCase()}
textStyles={styles.outlineButton}
onPress={handleOnSkip}
/>

<Button shelleyTheme title={strings.updateKeepEarning} onPress={handleOnUpdate} textStyles={styles.button} />
<Button
shelleyTheme
title={strings.updateKeepEarning.toLocaleUpperCase()}
onPress={handleOnUpdate}
textStyles={styles.button}
/>
</Actions>

<Space height="xl" />
Expand Down Expand Up @@ -156,7 +166,7 @@ const useStyles = () => {
borderColor: color.gray_c300,
},
warningBorder: {
borderWidth: 1,
borderWidth: 2,
borderColor: color.sys_magenta_c500,
},
poolTicker: {
Expand Down

0 comments on commit 8688530

Please sign in to comment.