Compare commits

..

3 Commits

Author SHA1 Message Date
Henry
845e7e81c1 fix: slice title when longer than max chars during import 2025-12-29 22:19:28 +00:00
Henry
019411de3f feat: add input length validation 2025-12-29 22:06:55 +00:00
Henry
4d6ecb7d41 feat: update card title from varchar to text 2025-12-29 22:05:30 +00:00

View File

@@ -46,8 +46,7 @@ const Button: React.FC<{
onMouseEnter={handleMouseEnter}
onClick={handleClick}
className={twMerge(
"group flex h-[34px] items-center rounded-md p-1.5 text-sm font-normal leading-6 hover:bg-light-200 hover:text-light-1000 dark:hover:bg-dark-200 dark:hover:text-dark-1000",
isCollapsed ? "md:justify-center" : "justify-between",
"group flex h-[34px] items-center justify-between rounded-md p-1.5 text-sm font-normal leading-6 hover:bg-light-200 hover:text-light-1000 dark:hover:bg-dark-200 dark:hover:text-dark-1000",
current
? "bg-light-200 text-light-1000 dark:bg-dark-200 dark:text-dark-1000"
: "text-neutral-600 dark:bg-dark-100 dark:text-dark-900",