Skip to content

Commit

Permalink
fix: Update asset name weight
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia committed Oct 6, 2023
1 parent cf3fbb9 commit fdfb302
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
align-items: center;
}

.asset .name {
font-weight: 700;
}

.asset .texts {
display: flex;
flex-direction: column;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class WorldsYourStorageModal extends React.PureComponent<Props, S
</div>
<div className={styles.asset}>
<div className={styles.texts}>
<span>{t('worlds_your_storage_modal.mana')}</span>
<span className={styles.name}>{t('worlds_your_storage_modal.mana')}</span>
<span className={styles.subtitle}>{t('worlds_your_storage_modal.mana_earn_storage')}</span>
{accountHoldings && mbsFromAccountHoldings && mbsFromAccountHoldings.manaMbs > 0 ? (
<span className={styles.amount}>
Expand All @@ -76,7 +76,7 @@ export default class WorldsYourStorageModal extends React.PureComponent<Props, S
<div className={styles.separator} />
<div className={styles.asset}>
<div className={styles.texts}>
<span>{t('worlds_your_storage_modal.lands')}</span>
<span className={styles.name}>{t('worlds_your_storage_modal.lands')}</span>
<span className={styles.subtitle}>{t('worlds_your_storage_modal.lands_earn_storage')}</span>
{accountHoldings && mbsFromAccountHoldings && mbsFromAccountHoldings.landMbs > 0 ? (
<span className={styles.amount}>
Expand All @@ -97,7 +97,7 @@ export default class WorldsYourStorageModal extends React.PureComponent<Props, S
<div className={styles.separator} />
<div className={styles.asset}>
<div className={styles.texts}>
<span>{t('worlds_your_storage_modal.names')}</span>
<span className={styles.name}>{t('worlds_your_storage_modal.names')}</span>
<span className={styles.subtitle}>{t('worlds_your_storage_modal.lands_earn_storage')}</span>
{accountHoldings && mbsFromAccountHoldings && mbsFromAccountHoldings.nameMbs > 0 ? (
<span className={styles.amount}>
Expand Down

0 comments on commit fdfb302

Please sign in to comment.