Adjust various base components
This commit is contained in:
parent
ab3236230b
commit
6872a7e8b2
5 changed files with 6 additions and 8 deletions
|
@ -57,7 +57,7 @@ const StyledMenuItem = styled(MantineMenu.Item)<MenuItemProps>`
|
|||
}
|
||||
|
||||
& .mantine-Menu-itemIcon {
|
||||
margin-right: 0.5rem;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
& .mantine-Menu-itemLabel {
|
||||
|
|
|
@ -46,7 +46,6 @@ export const Pagination = ({ $hideDividers, ...props }: PaginationProps) => {
|
|||
<StyledPagination
|
||||
$hideDividers={$hideDividers}
|
||||
radius="xl"
|
||||
size="md"
|
||||
{...props}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -58,7 +58,7 @@ interface NativeScrollAreaProps {
|
|||
pageHeaderProps?: PageHeaderProps & { offset?: any; target?: any };
|
||||
scrollBarOffset?: string;
|
||||
scrollHideDelay?: number;
|
||||
style: React.CSSProperties;
|
||||
style?: React.CSSProperties;
|
||||
}
|
||||
|
||||
export const NativeScrollArea = forwardRef(
|
||||
|
|
|
@ -108,10 +108,9 @@ export const TablePagination = ({
|
|||
>
|
||||
<Popover.Target>
|
||||
<Button
|
||||
compact
|
||||
radius="sm"
|
||||
size="lg"
|
||||
sx={{ height: '32px', padding: 0, width: '32px' }}
|
||||
size="sm"
|
||||
sx={{ height: '26px', padding: '0', width: '26px' }}
|
||||
tooltip={{ label: 'Go to page' }}
|
||||
variant="default"
|
||||
onClick={() => handlers.toggle()}
|
||||
|
|
|
@ -44,8 +44,8 @@ interface PlayButtonProps {
|
|||
const PlayButton = ({ onClick }: PlayButtonProps) => {
|
||||
return (
|
||||
<PlayBtn
|
||||
h="50px"
|
||||
w="50px"
|
||||
h="45px"
|
||||
w="45px"
|
||||
onClick={onClick}
|
||||
/>
|
||||
);
|
||||
|
|
Reference in a new issue