From 3122a1595dcde0d83c251a28bd52d470176c4276 Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 20 Sep 2021 17:57:52 -0700 Subject: [PATCH] Fix dynamicBackground height calculation - No longer extends vertically into the PlayerBar --- src/components/layout/styled.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/layout/styled.tsx b/src/components/layout/styled.tsx index 16034ce..c75545a 100644 --- a/src/components/layout/styled.tsx +++ b/src/components/layout/styled.tsx @@ -115,7 +115,7 @@ export const PageContainer = styled(Container)<{ $backgroundSrc?: string }>` transition: background-image 1s ease-in-out; width: 100%; - height: 92%; + height: calc(100% - 130px); background-position: center; background-repeat: no-repeat; background-size: cover;