Skip to content

Commit

Permalink
fix: theme adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
chybisov committed May 31, 2022
1 parent a133696 commit 526de7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/widget/src/components/Input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ export const Input = styled(InputBase)(({ theme }) => ({
[`.${inputBaseClasses.input}`]: {
padding: theme.spacing(1.5, 1, 1.5, 2),
height: '2.875em',
boxSizing: 'inherit',
},
}));
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ export const SelectTokenCardHeader = styled(CardHeader, {
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
width: compact ? 92 : 224,
width: compact ? 92 : 272,
fontWeight: selected ? 500 : 400,
},
[`.${cardHeaderClasses.subheader}`]: {
textOverflow: 'ellipsis',
whiteSpace: 'nowrap',
overflow: 'hidden',
width: compact ? 92 : 224,
width: compact ? 92 : 272,
},
}),
);

0 comments on commit 526de7f

Please sign in to comment.