Skip to content

Commit

Permalink
Fixed don feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
makkelie-dev committed Oct 19, 2024
1 parent 5684158 commit d86a1fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Page/Page.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ export const StyledPage = styled.div<{ showOverlay?: boolean }>`
flex-direction: column;
position: relative;
min-width: 18rem;
min-height: ${(props) => (props.showOverlay ? "unset" : "100vh")};
min-height: 100vh;
min-height: 100svh;
max-height: ${(props) => (props.showOverlay ? "100vh" : "unset")};
overflow-x: hidden;
overflow-y: ${(props) => (props.showOverlay ? "hidden" : "unset")};
Expand Down

0 comments on commit d86a1fb

Please sign in to comment.