From f365caa3656ab5f785194704deef7af6c7cacb6d Mon Sep 17 00:00:00 2001 From: Lucas Bordeau Date: Mon, 7 Apr 2025 07:37:19 +0200 Subject: [PATCH] Fixed ViewBarDetails unnecessary padding-top (#11395) This PR fixes a recent change in ViewBarDetails that added an unnecessary padding-top. Before : image After : image --- .../src/modules/views/components/ViewBarDetails.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/twenty-front/src/modules/views/components/ViewBarDetails.tsx b/packages/twenty-front/src/modules/views/components/ViewBarDetails.tsx index 93bcf6f8d..96ddcaed1 100644 --- a/packages/twenty-front/src/modules/views/components/ViewBarDetails.tsx +++ b/packages/twenty-front/src/modules/views/components/ViewBarDetails.tsx @@ -60,7 +60,6 @@ const StyledChipcontainer = styled.div` flex-direction: row; overflow: scroll; gap: ${({ theme }) => theme.spacing(2)}; - padding-top: ${({ theme }) => theme.spacing(1)}; z-index: 1; `; @@ -68,7 +67,6 @@ const StyledActionButtonContainer = styled.div` display: flex; flex-direction: row; gap: ${({ theme }) => theme.spacing(2)}; - padding-top: ${({ theme }) => theme.spacing(1)}; `; const StyledFilterContainer = styled.div`