From c45c293e826b004a1a91c9903eb4a7bbc8f17142 Mon Sep 17 00:00:00 2001 From: Jordan Frankfurt Date: Thu, 1 Oct 2020 14:23:48 -0400 Subject: [PATCH] fix(mobile popups): add right margin to mobile notifications (#1142) --- src/components/Popups/PopupItem.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Popups/PopupItem.tsx b/src/components/Popups/PopupItem.tsx index efd2ffd2e7..8fe6ba5eb9 100644 --- a/src/components/Popups/PopupItem.tsx +++ b/src/components/Popups/PopupItem.tsx @@ -30,6 +30,9 @@ export const Popup = styled.div` ${({ theme }) => theme.mediaWidth.upToSmall` min-width: 290px; + &:not(:last-of-type) { + margin-right: 35px; + } `} ` const Fader = styled.div`