Commit 0713f730 authored by Zach Pomerantz's avatar Zach Pomerantz Committed by GitHub

fix: widget sizing (#3455)

parent 5f7a18b4
......@@ -23,6 +23,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>`
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
background-color: ${({ theme }) => theme.container};
border-radius: ${({ theme }) => theme.borderRadius}em;
box-sizing: border-box;
color: ${({ theme }) => theme.primary};
display: flex;
flex-direction: column;
......@@ -30,7 +31,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>`
font-size: 16px;
font-smooth: always;
font-variant: none;
height: 348px;
height: 356px;
min-width: 300px;
padding: 0.25em;
position: relative;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment