Skip to content

Commit

Permalink
fix(view): mobile view cutting off content
Browse files Browse the repository at this point in the history
  • Loading branch information
MauriceNino committed Jun 15, 2022
1 parent ea35592 commit 3dd19bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/view/src/components/glass-pane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +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;
max-height: ${({ mobile }) => (mobile ? 'unset' : '500px')};
flex-grow: ${props => props.grow ?? 1};
transition: opacity 0.3 ease-in-out;
Expand Down

0 comments on commit 3dd19bb

Please sign in to comment.