Skip to content

Commit

Permalink
Minor UI fixes in Inbox and Yield Farming (#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishek-01k authored May 21, 2024
1 parent 66a13f5 commit 7d93a02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/yield/StakingModalComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ const StakingModalComponent = ({ onClose, InnerComponentProps, toastObject }) =>
<ItemHV2
width="-webkit-fill-available"
background={theme.default.bg}
height="35px"
height="60px"
padding={isMobile ? '8px' : '14px'}
borderRadius="12px"
border={`1px solid ${theme.modalBorderColor}`}
Expand Down
4 changes: 2 additions & 2 deletions src/segments/Inbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,6 @@ const ToasterMsg = styled.div`
`;

const SnapSection = styled(ItemHV2)`
max-height: 28px;
margin-top: 20px;
border-radius: 12px;
border: 1px solid #d4dcea;
Expand All @@ -484,14 +483,15 @@ const SnapSection = styled(ItemHV2)`
padding: 12px 16px;
align-items: center;
gap: 16px;
box-sizing:content-box;
@media ${device.tablet} {
gap: 9px;
margin-right: 10px;
}
@media (max-width: 525px) {
max-height: 50px;
padding: 8px 12px;
}
`;

Expand Down

0 comments on commit 7d93a02

Please sign in to comment.