From a8d8fecd156ad133cdf52e140383573c941c6bc7 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 13 Jul 2019 12:56:04 -0700 Subject: [PATCH] Update DropdownMenu.js --- app/components/DropdownMenu/DropdownMenu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/DropdownMenu/DropdownMenu.js b/app/components/DropdownMenu/DropdownMenu.js index f96ffee3d..c49ee8069 100644 --- a/app/components/DropdownMenu/DropdownMenu.js +++ b/app/components/DropdownMenu/DropdownMenu.js @@ -119,7 +119,7 @@ const Label = styled(Flex).attrs({ `; const Position = styled.div` - position: fixed; + position: absolute; ${({ left }) => (left !== undefined ? `left: ${left}px` : '')}; ${({ right }) => (right !== undefined ? `right: ${right}px` : '')}; top: ${({ top }) => top}px;