fix: dots icons smaller
This commit is contained in:
@ -7,8 +7,9 @@ import {
|
||||
} from "@tabler/icons-react";
|
||||
import { Box, Group, Menu, Text } from "@mantine/core";
|
||||
import { useDrawersContext } from "@/drawers/DrawersContext";
|
||||
import { BoardSchema, StatusSchema } from "@/lib/client";
|
||||
import useIsMobile from "@/hooks/utils/useIsMobile";
|
||||
import { BoardSchema, StatusSchema } from "@/lib/client";
|
||||
import { iconSizeSm } from "@/theme";
|
||||
|
||||
type Props = {
|
||||
status: StatusSchema;
|
||||
@ -36,7 +37,7 @@ const StatusMenu: FC<Props> = ({
|
||||
<Box
|
||||
style={{ cursor: "pointer" }}
|
||||
onClick={e => e.stopPropagation()}>
|
||||
<IconDotsVertical />
|
||||
<IconDotsVertical size={iconSizeSm} />
|
||||
</Box>
|
||||
</Menu.Target>
|
||||
<Menu.Dropdown>
|
||||
|
||||
Reference in New Issue
Block a user