diff --git a/bun.lockb b/bun.lockb index 91fdff53..2d7fb3e0 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 7f007f71..66b83ef0 100644 --- a/package.json +++ b/package.json @@ -53,6 +53,7 @@ "postcss": "^8.4.27", "prettier": "^3.0.0", "prettier-plugin-tailwindcss": "^0.5.1", + "tailwind-scrollbar": "^3.0.5", "tailwindcss": "^3.3.3", "typescript": "^5.1.6" }, diff --git a/src/app/_components/dashboard.tsx b/src/app/_components/dashboard.tsx index 45beaa50..7a204de3 100644 --- a/src/app/_components/dashboard.tsx +++ b/src/app/_components/dashboard.tsx @@ -58,7 +58,7 @@ export default async function Layout(props: { children: React.ReactNode }) {

-
{props.children}
+
{props.children}
); diff --git a/src/app/boards/[...id]/page.tsx b/src/app/boards/[...id]/page.tsx index beee6e37..51a5b4ba 100644 --- a/src/app/boards/[...id]/page.tsx +++ b/src/app/boards/[...id]/page.tsx @@ -140,8 +140,8 @@ export default function BoardPage() { }; return ( -
-
+
+
-
+
{(provided) => ( @@ -180,6 +180,7 @@ export default function BoardPage() { ref={provided.innerRef} {...provided.droppableProps} > +
{boardData?.lists?.map((list: List, index) => (

@@ -243,7 +244,7 @@ export default function BoardPage() { )} ))} -

+
{provided.placeholder}
)} diff --git a/src/app/boards/page.tsx b/src/app/boards/page.tsx index 2f09cef0..710c3dc2 100644 --- a/src/app/boards/page.tsx +++ b/src/app/boards/page.tsx @@ -12,7 +12,7 @@ export default function BoardsPage() { const { openModal } = useModal(); return ( -
+

Boards diff --git a/src/app/cards/[...id]/page.tsx b/src/app/cards/[...id]/page.tsx index 81c06add..b32d59e4 100644 --- a/src/app/cards/[...id]/page.tsx +++ b/src/app/cards/[...id]/page.tsx @@ -40,7 +40,7 @@ export default function CardPage() { if (!cardId) return <>; return ( -
+
diff --git a/tailwind.config.ts b/tailwind.config.ts index 1faa4ae3..78c7cebd 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -26,5 +26,6 @@ export default { }, }, }, - plugins: [require("@tailwindcss/forms")], + // eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-var-requires + plugins: [require("@tailwindcss/forms"), require('tailwind-scrollbar')({ nocompatible: true })], } satisfies Config;