Skip to content

Commit

Permalink
tweak: sponsor ad opacity
Browse files Browse the repository at this point in the history
  • Loading branch information
Bin-Huang committed Apr 26, 2023
1 parent 83df182 commit e8cdcb0
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,6 @@ function Main() {
{
showSponsorAD && sponsorAD && (
<Chip size='small'
icon={<CampaignOutlinedIcon />}
sx={{
maxWidth: '400px',
height: 'auto',
Expand All @@ -470,11 +469,13 @@ function Main() {
},
borderRadius: '8px',
marginRight: '25px',
opacity: 0.6,
}}
icon={<CampaignOutlinedIcon />}
deleteIcon={<CancelOutlinedIcon />}
onDelete={() => setShowSponsorAD(false)}
onClick={() => api.openLink(sponsorAD.url)}
label={sponsorAD.text}
onDelete={() => setShowSponsorAD(false)}
onClick={() => api.openLink(sponsorAD.url)}
label={sponsorAD.text}
/>
)
}
Expand Down

0 comments on commit e8cdcb0

Please sign in to comment.