From 463fa5b309ee241960de0fe05bff69738c0a7b29 Mon Sep 17 00:00:00 2001 From: Jon Edvald Date: Tue, 9 Mar 2021 20:54:37 +0100 Subject: [PATCH] fix(dashboard): visible scrollbar in overview cards --- dashboard/src/components/entity-cards/common.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dashboard/src/components/entity-cards/common.tsx b/dashboard/src/components/entity-cards/common.tsx index 710d2426cf..6e8e164a1a 100644 --- a/dashboard/src/components/entity-cards/common.tsx +++ b/dashboard/src/components/entity-cards/common.tsx @@ -19,6 +19,7 @@ export const EntityCardWrap = styled.div` width: 100%; margin-top: 1rem; padding: 0.75rem 0.75rem 0.4rem 0.75rem; + overflow-y: hidden; &:first-of-type { margin-top: 0; @@ -33,6 +34,7 @@ export const Header = styled.div` width: 100%; display: flex; justify-content: space-between; + overflow-y: hidden; ` export const Content = styled.div`