Skip to content

Commit

Permalink
style tuning
Browse files Browse the repository at this point in the history
  • Loading branch information
dmy147 committed Dec 19, 2024
1 parent 0f20160 commit 0bae1a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/ui/views/Approval/components/Connect/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ const ConnectWrapper = styled.div`
line-height: 26px;
text-align: center;
color: var(--r-neutral-title-1, #192945);
word-wrap: break-word;
max-width: 100%;
}
}
}
Expand Down
4 changes: 3 additions & 1 deletion src/ui/views/Approval/components/TextActions/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ const Actions = ({
</div>
</div>

{data && <Divide />}
{data?.createKey || data?.verifyAddress || data?.common ? (
<Divide />
) : null}

{data && (
<div className="container">
Expand Down
3 changes: 2 additions & 1 deletion src/ui/views/GasAccount/components/DepositPopup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ const TokenSelector = ({
borderRadius: '16px 16px 0px 0',
height: 500,
}}
closeIcon={<GasAccountCloseIcon />}
closable
>
<div className="flex flex-col h-full pt-20">
Expand Down Expand Up @@ -283,7 +284,7 @@ export const GasAccountDepositPopup = (props: PopupProps) => {
return (
<Popup
placement="bottom"
height={375}
height={387}
isSupportDarkMode
bodyStyle={{
padding: 0,
Expand Down

0 comments on commit 0bae1a2

Please sign in to comment.