Browse Source

Fix dynamicBackground height calculation

- No longer extends vertically into the PlayerBar
master
jeffvli 3 years ago
parent
commit
3122a1595d
  1. 2
      src/components/layout/styled.tsx

2
src/components/layout/styled.tsx

@ -115,7 +115,7 @@ export const PageContainer = styled(Container)<{ $backgroundSrc?: string }>`
transition: background-image 1s ease-in-out; transition: background-image 1s ease-in-out;
width: 100%; width: 100%;
height: 92%; height: calc(100% - 130px);
background-position: center; background-position: center;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: cover;

Loading…
Cancel
Save