diff --git a/apps/app/components/core/board-view/all-boards.tsx b/apps/app/components/core/board-view/all-boards.tsx index 2c3c46462..f8ab8ff7f 100644 --- a/apps/app/components/core/board-view/all-boards.tsx +++ b/apps/app/components/core/board-view/all-boards.tsx @@ -40,7 +40,7 @@ export const AllBoards: React.FC = ({ <> {groupedByIssues ? (
-
+
{Object.keys(groupedByIssues).map((singleGroup, index) => { const currentState = selectedGroup === "state_detail.name" diff --git a/apps/app/styles/globals.css b/apps/app/styles/globals.css index abc50d9dc..e6490a822 100644 --- a/apps/app/styles/globals.css +++ b/apps/app/styles/globals.css @@ -30,6 +30,21 @@ -webkit-font-smoothing: antialiased; } +/* Horizontal Scrollbar style */ +.horizontal-scroll-enable{ + overflow-x: scroll; +} + +.horizontal-scroll-enable::-webkit-scrollbar{ + display: block; + height: 10px; +} + +.horizontal-scroll-enable::-webkit-scrollbar-thumb{ + border-radius: 5px; + background-color: #9ca3af; +} +/* end Horizontal Scrollbar style */ .scrollbar-enable::-webkit-scrollbar { display: block; }