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 }>` ...@@ -23,6 +23,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>`
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
background-color: ${({ theme }) => theme.container}; background-color: ${({ theme }) => theme.container};
border-radius: ${({ theme }) => theme.borderRadius}em; border-radius: ${({ theme }) => theme.borderRadius}em;
box-sizing: border-box;
color: ${({ theme }) => theme.primary}; color: ${({ theme }) => theme.primary};
display: flex; display: flex;
flex-direction: column; flex-direction: column;
...@@ -30,7 +31,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>` ...@@ -30,7 +31,7 @@ const WidgetWrapper = styled.div<{ width?: number | string }>`
font-size: 16px; font-size: 16px;
font-smooth: always; font-smooth: always;
font-variant: none; font-variant: none;
height: 348px; height: 356px;
min-width: 300px; min-width: 300px;
padding: 0.25em; padding: 0.25em;
position: relative; 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