Skip to content

Commit

Permalink
add more paddding to the right of value
Browse files Browse the repository at this point in the history
  • Loading branch information
gwyneplaine committed Apr 6, 2021
1 parent 871c981 commit af1995f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion design-system/packages/fields/src/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export function MultiSelect({
}) {
const tokens = useInputTokens({ width: widthKey });
const defaultStyles = useStyles({ tokens, multi: true });
const composedStyles = composeStyles(defaultStyles, styles);
const composedStyles = styles ? mergeStyles(defaultStyles, styles) : defaultStyles;

return (
<ReactSelect
Expand Down
3 changes: 2 additions & 1 deletion packages-next/admin-ui/src/components/Pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ export function Pagination({ currentPage, total, pageSize, list }: PaginationPro
styles={{
valueContainer: provided => ({
...provided,
padding: '0 12px',
paddingLeft: '12px',
paddingRight: '16px',
}),
}}
menuPortalTarget={document.body}
Expand Down

0 comments on commit af1995f

Please sign in to comment.