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: remove inner css styling for tailwind class

xFGhoul 14ebf407 1b1b290d

+12 -10
+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" style={{ top: "-2px" }}> 488 + <span className="relative max-w-20 truncate -top-0.5"> 489 489 {label.name} 490 490 </span> 491 491 </DropdownMenuItem>
+1 -1
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" style={{ top: "-2px" }}> 28 + <span className="relative max-w-20 truncate -top-0.5"> 29 29 {label.name} 30 30 </span> 31 31 </Badge>
+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" style={{ top: "-2px" }}> 500 + <span className="relative max-w-20 truncate -top-0.5"> 501 501 {label.name} 502 502 </span> 503 503 </DropdownMenuItem>
+1 -1
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" style={{ top: "-2px" }}> 54 + <span className="relative max-w-20 truncate -top-0.5"> 55 55 {label.name} 56 56 </span> 57 57 </Badge>
+1 -1
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" style={{ top: "-2px" }}> 27 + <span className="relative max-w-20 truncate -top-0.5"> 28 28 {label.name} 29 29 </span> 30 30 </Badge>
+2 -2
apps/web/src/components/shared/modals/create-task-modal.tsx
··· 639 639 ?.color || "var(--color-neutral-400)", 640 640 }} 641 641 /> 642 - <span className="relative max-w-20 truncate" style={{ top: "-2px" }}> 642 + <span className="relative max-w-20 -top-0.5 truncate"> 643 643 {label.name} 644 644 </span> 645 645 </Badge> ··· 917 917 )?.color || "var(--color-neutral-400)", 918 918 }} 919 919 /> 920 - <span className="relative max-w-20 truncate" style={{ top: "-2px" }}> 920 + <span className="relative max-w-20 truncate -top-0.5"> 921 921 {label.name} 922 922 </span> 923 923 </button>
+1 -1
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 truncate" style={{ top: "-2px" }}> 249 + <span className="relative max-w-20 -top-0.5 truncate"> 250 250 {label.name} 251 251 </span> 252 252 </button>
+1 -1
apps/web/src/components/task/task-properties-sidebar.tsx
··· 661 661 ?.color || "var(--color-neutral-400)", 662 662 }} 663 663 /> 664 - <span className="relative max-w-20 truncate" style={{ top: "-2px" }}> 664 + <span className="relative max-w-20 truncate -top-0.5"> 665 665 {label.name} 666 666 </span> 667 667 </Badge>
+3 -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 truncate" style={{ top: "-2px" }}> 666 + <span 667 + className="relative max-w-20 -top-0.5 truncate" 668 + > 667 669 {label.name} 668 670 </span> 669 671 </DropdownMenuCheckboxItem>