Skip to content

Commit

Permalink
fix(view): add max-height to widgets
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Jun 15, 2022
1 parent bb6fbfb commit 8e9ccfb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/view/src/components/glass-pane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ type SCProps = GlassPaneProps & { mobile: boolean };
const Container = styled.div<SCProps>`
min-width: ${({ minWidth, mobile }) => (mobile ? 0 : minWidth)}px;
min-height: 360px;
max-height: 500px;
flex-grow: ${props => props.grow ?? 1};
transition: opacity 0.3 ease-in-out;
Expand Down

0 comments on commit 8e9ccfb

Please sign in to comment.