Skip to content

Commit

Permalink
fix: notifications style bun2272
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJiang2021 authored and libruce committed Apr 16, 2024
1 parent 414f30d commit 03c811a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/storefront/src/components/B3Tip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function B3Tip({
}}
sx={{
top: `${
24 + index * 10 + index * (isMobile ? 80 : 85)
24 + index * 10 + index * (isMobile ? 80 : 90)
}px !important`,
width: '320px',
height: 'auto',
Expand All @@ -55,6 +55,10 @@ export default function B3Tip({
display: `${msg.isClose ? 'block' : 'none'}`,
},
mb: '5px',

'& .MuiAlert-message': {
overflow: 'unset',
},
}}
variant="filled"
key={msg.id}
Expand Down

0 comments on commit 03c811a

Please sign in to comment.