From 1fed5f78464e789e471f35b5fda2a94f92fcb5cf Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Sat, 20 May 2023 03:08:23 +0530 Subject: [PATCH] style: active cycle stats tab sticky (#1092) --- apps/app/components/cycles/active-cycle-details.tsx | 2 +- apps/app/components/cycles/active-cycle-stats.tsx | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/apps/app/components/cycles/active-cycle-details.tsx b/apps/app/components/cycles/active-cycle-details.tsx index 7bb357709..65c2e8b1b 100644 --- a/apps/app/components/cycles/active-cycle-details.tsx +++ b/apps/app/components/cycles/active-cycle-details.tsx @@ -449,7 +449,7 @@ export const ActiveCycleDetails: React.FC = ({ cycle, isComple -
+
diff --git a/apps/app/components/cycles/active-cycle-stats.tsx b/apps/app/components/cycles/active-cycle-stats.tsx index 2a8be9575..0ef85e4b3 100644 --- a/apps/app/components/cycles/active-cycle-stats.tsx +++ b/apps/app/components/cycles/active-cycle-stats.tsx @@ -73,7 +73,10 @@ export const ActiveCycleProgressStats: React.FC = ({ issues }) => { } }} > - + `px-3 py-1 text-brand-base rounded-3xl border border-brand-base ${ @@ -93,10 +96,10 @@ export const ActiveCycleProgressStats: React.FC = ({ issues }) => { Labels - + {members?.map((member, index) => { const totalArray = issues?.filter((i) => i?.assignees?.includes(member.member.id)); @@ -147,7 +150,7 @@ export const ActiveCycleProgressStats: React.FC = ({ issues }) => { {issueLabels?.map((label, index) => { const totalArray = issues?.filter((i) => i?.labels?.includes(label.id));