From 6e00a122c671f4de1a8b88128a98edd043105a7b Mon Sep 17 00:00:00 2001 From: nitin <142569587+ehconitin@users.noreply.github.com> Date: Mon, 1 Jun 2026 15:50:40 +0530 Subject: [PATCH] fix(kanban): contain checkbox hover reveal within card bounds (#21100) follow up to https://github.com/twentyhq/twenty/pull/20455 before - https://github.com/user-attachments/assets/e5a8a328-81ec-4dc4-8e54-1a54cf252135 after - https://github.com/user-attachments/assets/61cbb856-564c-487f-81e5-e27adc4a0d2d --- .../modules/object-record/record-card/components/RecordCard.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/twenty-front/src/modules/object-record/record-card/components/RecordCard.tsx b/packages/twenty-front/src/modules/object-record/record-card/components/RecordCard.tsx index d281e06404..3a31517778 100644 --- a/packages/twenty-front/src/modules/object-record/record-card/components/RecordCard.tsx +++ b/packages/twenty-front/src/modules/object-record/record-card/components/RecordCard.tsx @@ -37,8 +37,10 @@ const StyledBoardCard = styled.div<{ } .checkbox-container { + flex-shrink: 0; max-width: 0; opacity: 0; + overflow: hidden; pointer-events: none; transition: all ease-in-out 160ms; }