fix: spacing between statuses and cards, tag labels
This commit is contained in:
@@ -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()}
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
flex-direction: column;
|
||||
/*background-color: red;*/
|
||||
height: 100%;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.items-list::after {
|
||||
|
||||
Reference in New Issue
Block a user