Skip to content

Commit

Permalink
Merge pull request #10899 from DestinyItemManager/de-uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
bhollis authored Jan 19, 2025
2 parents bdccb49 + 5910050 commit 9d537fb
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/app/loadout/LoadoutView.m.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
flex-direction: row;
gap: 8px;
margin: 0 !important;
font-size: 16px;
font-size: 18px;
text-transform: none;
letter-spacing: normal;
}
}

Expand Down
5 changes: 5 additions & 0 deletions src/app/loadout/Loadouts.m.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
text-align: left;
}

.menuLoadout > span:not(.app-icon) {
text-transform: none;
letter-spacing: normal;
}

.hashtagTip {
display: flex;
align-items: center;
Expand Down
2 changes: 2 additions & 0 deletions src/app/loadout/Loadouts.m.scss.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/app/loadout/Loadouts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,11 @@ function Loadouts({ account }: { account: DestinyAccount }) {
</div>
{!isPhonePortrait &&
loadouts.map((loadout) => (
<PageWithMenu.MenuButton onClick={() => scrollToLoadout(loadout.id)} key={loadout.id}>
<PageWithMenu.MenuButton
onClick={() => scrollToLoadout(loadout.id)}
key={loadout.id}
className={styles.menuLoadout}
>
<ColorDestinySymbols text={loadout.name} />
</PageWithMenu.MenuButton>
))}
Expand Down

0 comments on commit 9d537fb

Please sign in to comment.