fix: spacing between statuses and cards, tag labels

This commit is contained in:
2025-03-12 00:59:13 +04:00
parent 98266a8a8f
commit 7dcb646b82
4 changed files with 19 additions and 19 deletions

View File

@@ -61,11 +61,6 @@ const Board = ({ board }: Props) => {
<div
{...provided.droppableProps}
ref={provided.innerRef}
onMouseEnter={() => {
if (dragState === DragState.DRAG_CARD) {
setSelectedBoard(board);
}
}}
>
<Draggable
draggableId={"board-" + board.id.toString()}

View File

@@ -1,4 +1,4 @@
import { Center, Checkbox, Group, Menu, Pill, rem, Stack, Text } from "@mantine/core";
import { Center, Checkbox, Group, Menu, Pill, rem, Stack } from "@mantine/core";
import { CardTagSchema, CardTagService } from "../../../../client";
import { IconPlus } from "@tabler/icons-react";
import styles from "./CardTags.module.css";
@@ -63,8 +63,8 @@ const CardTags = ({ tags, cardId, groupId }: Props) => {
<Checkbox
checked={!!tags.find(cardTag => cardTag.id === tag.id)}
onClick={(event) => onTagClick(tag, event)}
label={tag.name}
/>
<Text>{tag.name}</Text>
</Group>
))}
</Stack>

View File

@@ -11,6 +11,7 @@
flex-direction: column;
/*background-color: red;*/
height: 100%;
margin-top: 8px;
}
.items-list::after {