Skip to content

Commit

Permalink
fix: adjust padding
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed Apr 21, 2022
1 parent a130ef3 commit 626acf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/widget/src/components/TokenList/TokenList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const TokenList: FC<TokenListProps> = ({
size: chainTokens.length,
parentRef,
overscan: 3,
paddingEnd: 8,
paddingEnd: 12,
estimateSize: useCallback(() => 60, []),
keyExtractor: (index) => chainTokens[index].address ?? index,
});
Expand Down
2 changes: 1 addition & 1 deletion packages/widget/src/pages/SettingsPage/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { SlippageInput } from './SlippageInput';
export const SettingsPage = () => {
return (
<Container disableGutters>
<Box px={3} pt={2} pb={3}>
<Box px={3} pt={1} pb={3}>
<RoutePrioritySelect fullWidth />
<Box sx={{ display: 'flex', alignItems: 'center' }} mt={3}>
<Box pr={2}>
Expand Down

0 comments on commit 626acf0

Please sign in to comment.