Skip to content

Commit

Permalink
Expand nav item to its height (#712)
Browse files Browse the repository at this point in the history
* Fix the typo for oracles

* Update profile stake tooltip

* Expand nav item to its height
  • Loading branch information
aidenaio authored Oct 1, 2021
1 parent 955de01 commit d10ee8f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion renderer/pages/profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ export default function ProfilePage() {
{stake > 0 && status === IdentityStatus.Newbie && (
<AnnotatedUserStat
annotation={t(
'You need to get Verified status to get the locked funds into the normal wallet'
'You need to terminate your identity to withdraw the stake'
)}
label={t('Locked')}
value={toDna(stake * 0.75)}
Expand Down
2 changes: 1 addition & 1 deletion renderer/screens/oracles/containers.js
Original file line number Diff line number Diff line change
Expand Up @@ -1615,7 +1615,7 @@ export function NewOraclePresetDialog({onChoosePreset, onCancel, ...props}) {
<Stack spacing={1} pt={2} pb={3}>
<Text>{t('Making decision')}</Text>
<Text color="muted">
{t('51% consensus is required to make a desision')}
{t('51% consensus is required to make a decision')}
</Text>
</Stack>
</Radio>
Expand Down
2 changes: 1 addition & 1 deletion renderer/shared/components/sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ function NavItem({href, icon, children}) {
borderRadius="md"
color={isActive ? 'white' : 'xwhite.050'}
fontWeight={500}
height={8}
minH={8}
px={2}
py="3/2"
_hover={{bg: isActive ? 'xblack.016' : 'gray.10', color: 'white'}}
Expand Down

0 comments on commit d10ee8f

Please sign in to comment.