Skip to content

Commit

Permalink
fix: Update asset name weight (#2950)
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia committed Oct 6, 2023
1 parent 8bda8c9 commit 7f2d1fe
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

1 comment on commit 7f2d1fe

@vercel
Copy link

@vercel vercel bot commented on 7f2d1fe Oct 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

builder – ./

builder-decentraland1.vercel.app
builder-git-master-decentraland1.vercel.app

Please sign in to comment.