kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(ui): align task label text vertically

Tin abb0ae20 390183f9

+9 -19
+1 -1
apps/site/components/project-board-toolbar.tsx
··· 485 485 ?.color || "var(--color-neutral-400)", 486 486 }} 487 487 /> 488 - <span className="relative max-w-20 truncate -top-0.5"> 488 + <span className="max-w-20 truncate"> 489 489 {label.name} 490 490 </span> 491 491 </DropdownMenuItem>
+1 -3
apps/site/components/project-task-labels.tsx
··· 25 25 "var(--color-neutral-400)", 26 26 }} 27 27 /> 28 - <span className="relative max-w-20 truncate -top-0.5"> 29 - {label.name} 30 - </span> 28 + <span className="max-w-20 truncate">{label.name}</span> 31 29 </Badge> 32 30 ))} 33 31 </div>
+1 -1
apps/web/src/components/board/board-toolbar.tsx
··· 497 497 ?.color || "var(--color-neutral-400)", 498 498 }} 499 499 /> 500 - <span className="relative max-w-20 truncate -top-0.5"> 500 + <span className="max-w-20 truncate"> 501 501 {label.name} 502 502 </span> 503 503 </DropdownMenuItem>
+1 -3
apps/web/src/components/kanban-board/task-labels.tsx
··· 51 51 backgroundColor: validColor(label.color), 52 52 }} 53 53 /> 54 - <span className="relative max-w-20 truncate -top-0.5"> 55 - {label.name} 56 - </span> 54 + <span className="max-w-20 truncate">{label.name}</span> 57 55 </Badge> 58 56 ))} 59 57 </div>
+1 -3
apps/web/src/components/public-project/public-task-labels.tsx
··· 24 24 "var(--color-neutral-400)", 25 25 }} 26 26 /> 27 - <span className="relative max-w-20 truncate -top-0.5"> 28 - {label.name} 29 - </span> 27 + <span className="max-w-20 truncate">{label.name}</span> 30 28 </Badge> 31 29 ))} 32 30 </div>
+2 -4
apps/web/src/components/shared/modals/create-task-modal.tsx
··· 647 647 ?.color || "var(--color-neutral-400)", 648 648 }} 649 649 /> 650 - <span className="relative max-w-20 -top-0.5 truncate"> 651 - {label.name} 652 - </span> 650 + <span className="max-w-20 truncate">{label.name}</span> 653 651 </Badge> 654 652 ))} 655 653 </div> ··· 925 923 )?.color || "var(--color-neutral-400)", 926 924 }} 927 925 /> 928 - <span className="relative max-w-20 truncate -top-0.5"> 926 + <span className="max-w-20 truncate"> 929 927 {label.name} 930 928 </span> 931 929 </button>
+1 -3
apps/web/src/components/task/task-labels-popover.tsx
··· 246 246 "var(--color-neutral-400)", 247 247 }} 248 248 /> 249 - <span className="relative max-w-20 -top-0.5 truncate"> 250 - {label.name} 251 - </span> 249 + <span className="max-w-20 truncate">{label.name}</span> 252 250 </button> 253 251 ))} 254 252
+1 -1
apps/web/src/routes/_layout/_authenticated/dashboard/workspace/$workspaceId/project/$projectId/backlog.tsx
··· 663 663 )?.color || "var(--color-neutral-400)", 664 664 }} 665 665 /> 666 - <span className="relative max-w-20 -top-0.5 truncate"> 666 + <span className="max-w-20 truncate"> 667 667 {label.name} 668 668 </span> 669 669 </DropdownMenuCheckboxItem>