Skip to content

Commit

Permalink
fix: update css selectors
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverqx committed Feb 24, 2025
1 parent 371b7a8 commit 08766d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const StyledPage = styled.div`

const StyledMainContainer = styled.div<{ pageBarHeight: number }>`
padding-bottom: ${({ theme }) => theme.spacing(3)};
border: 1px solid ${({ theme }) => theme.border.color.medium};
border-top: 1px solid ${({ theme }) => theme.border.color.medium};
height: calc(100vh - ${({ pageBarHeight }) => `${pageBarHeight}px`});
width: 100vw;
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const StyledNestedContainer = styled.div<{ pageBarHeight: number }>`
height: 100%;
width: 100%;
> * {
[data-v-app] {
max-height: ${({ theme, pageBarHeight }) =>
`calc(
100dvh
Expand Down

0 comments on commit 08766d6

Please sign in to comment.