Skip to content

Commit

Permalink
Design: fix styles
Browse files Browse the repository at this point in the history
  • Loading branch information
dannaward committed May 20, 2023
1 parent b5a5d39 commit df00cf1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/pages/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,9 @@ export default Main;

const BalanceContainer = styled.div`
color: ${colors.white};
font-size: ;
`;
const TokenContainer = styled.div`
// margin-top: 20%;
margin-top: 20%;
`;
const TokenBalance = styled.text`
color: ${colors.white};
Expand All @@ -78,6 +77,7 @@ const TokenListBalance = styled.text`
const TokenListContainer = styled.div`
width: 327px;
display: flex;
align-items: center;
margin: 0 auto;
border-radius: 10px;
margin-top: 27px;
Expand Down
6 changes: 4 additions & 2 deletions src/pages/swap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ const SwapInputContainer = styled.form`
display: flex;
margin: 0 auto;
margin-top: 20px;
text-align: center;
margin-bottom: 20px;
text-align: center;
border-radius: 15px;
background-color: ${colors.white};
align-items: center;
Expand All @@ -143,12 +143,14 @@ const SendAmountInput = styled.input`
justify-content: center;
align-items: center;
width: 150px;
background-color: transparent;
`;

const GasFeeInfo = styled.text`
color: ${colors.black};
font-size: 30px;
font-size: 25px;
`;
const SetGasLimit = styled.button`
width: 291px;
Expand Down

0 comments on commit df00cf1

Please sign in to comment.