Skip to content

Commit 5c66f69

Browse files
authored
[codex] fix mobile profile artist badge (#14454)
1 parent 323dc5a commit 5c66f69

2 files changed

Lines changed: 12 additions & 2 deletions

File tree

packages/web/src/pages/profile-page/MobileServerProfilePage.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,12 @@ export const MobileServerProfilePage = ({
7878
position: 'absolute',
7979
top: 21,
8080
right: 13,
81-
fill: 'white',
82-
boxShadow: '0 1px 4px 0 rgba(0, 0, 0, 0.3)'
81+
color: 'var(--harmony-static-white)',
82+
fill: 'var(--harmony-static-white)',
83+
filter: 'drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3))',
84+
'& path': {
85+
fill: 'var(--harmony-static-white)'
86+
}
8387
}}
8488
/>
8589
) : null}

packages/web/src/pages/profile-page/components/mobile/ProfileHeader.module.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,15 @@
4949
position: absolute;
5050
top: 21px;
5151
right: 13px;
52+
color: var(--harmony-static-white);
53+
fill: var(--harmony-static-white);
5254
filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.3));
5355
}
5456

57+
.badgeArtist path {
58+
fill: var(--harmony-static-white);
59+
}
60+
5561
.artistInfo {
5662
padding: 30px 12px 12px;
5763
display: inline-flex;

0 commit comments

Comments
 (0)