Skip to content

Commit

Permalink
fix: fw-415 (#11451)
Browse files Browse the repository at this point in the history
  • Loading branch information
beyond009 committed Feb 27, 2024
1 parent 1d6dbec commit 9a9dad8
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ const useStyles = makeStyles()((theme) => ({
container: {
padding: '12px 16px',
height: 474,
overflow: 'auto',
'&::-webkit-scrollbar': {
display: 'none',
},
Expand All @@ -30,6 +29,12 @@ const useStyles = makeStyles()((theme) => ({
lineHeight: '18px',
padding: '0 12px',
},
claimerList: {
overflow: 'auto',
'&::-webkit-scrollbar': {
display: 'none',
},
},
noData: {
display: 'flex',
alignItems: 'center',
Expand Down Expand Up @@ -70,7 +75,7 @@ export const FireflyRedPacketHistoryDetails = memo(function FireflyRedPacketHist
{claimInfo ?
<FireflyRedPacketDetailsItem history={{ ...claimInfo, redpacket_id: rpid }} isDetail />
: null}
<Box>
<Box className={classes.claimerList}>
{claimList.length ?
claimList.map((item) => (
<div className={classes.claimer} key={item.creator}>
Expand Down

0 comments on commit 9a9dad8

Please sign in to comment.