From 6c4f7ab9a1be7fd5344ec7d822776dddb77fdb29 Mon Sep 17 00:00:00 2001 From: Zach Pomerantz Date: Tue, 22 Mar 2022 13:44:33 -0400 Subject: [PATCH] fix: modal border radius (#3576) --- src/lib/components/Widget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/Widget.tsx b/src/lib/components/Widget.tsx index 413955f761..ae729e1cdd 100644 --- a/src/lib/components/Widget.tsx +++ b/src/lib/components/Widget.tsx @@ -60,7 +60,7 @@ const slideOut = keyframes` ` const DialogWrapper = styled.div` - border-radius: ${({ theme }) => theme.borderRadius}em; + border-radius: ${({ theme }) => theme.borderRadius * 0.75}em; height: calc(100% - 0.5em); left: 0; margin: 0.25em;