From cdac852e26d79af7c50aa9216aa97d528c2d9156 Mon Sep 17 00:00:00 2001 From: Kamil Gabryjelski Date: Tue, 29 Mar 2022 15:31:23 +0200 Subject: [PATCH] Replace margin with height --- superset-frontend/src/dashboard/components/dnd/DragHandle.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/src/dashboard/components/dnd/DragHandle.tsx b/superset-frontend/src/dashboard/components/dnd/DragHandle.tsx index 60a72ddae94e..5209c99fee72 100644 --- a/superset-frontend/src/dashboard/components/dnd/DragHandle.tsx +++ b/superset-frontend/src/dashboard/components/dnd/DragHandle.tsx @@ -27,7 +27,7 @@ interface DragHandleProps { const DragHandleContainer = styled.div<{ position: 'left' | 'top' }>` ${({ theme, position }) => css` - margin-bottom: ${theme.gridUnit}px !important; + height: ${theme.gridUnit * 5}px; overflow: hidden; cursor: move; ${position === 'top' &&