From 8f625b5da7bf89f32c44a3a87a91fea23682384b Mon Sep 17 00:00:00 2001 From: Oliver Baker Date: Thu, 30 Jun 2022 12:48:46 -0500 Subject: [PATCH] fix(modal underlay): set the default background color to a translucent black instead of opaque black --- src/components/Modal/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Modal/Modal.tsx b/src/components/Modal/Modal.tsx index bf9aef919..718142b7c 100644 --- a/src/components/Modal/Modal.tsx +++ b/src/components/Modal/Modal.tsx @@ -22,7 +22,7 @@ const Underlay = styled(AnimatedDiv)` height: 100%; width: 100%; - background-color: #000; + background-color: transparentize(0.5, '#000'); position: fixed; top: 0;