Skip to content

Commit fceb76c

Browse files
author
Danny Ruchtie
committed
Quick fix for Height header (will fix more later)
1 parent 9b624bf commit fceb76c

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

packages/homepage/src/screens/home/hero/elements.js

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,21 @@ export const HeroWrapper = styled.section`
4040
overflow: hidden;
4141
padding: 0 2rem;
4242
43-
height: 100vh;
44-
min-height: 1080px;
43+
height: 80vh;
44+
min-height: 768px;
4545
4646
perspective: 1000;
47+
}
4748
48-
${props => props.theme.breakpoints.sm} {
49-
min-height: 800px;
49+
@media screen and (min-width: 576px) {
50+
min-height: 1024px;
5051
}
52+
53+
54+
@media screen and (min-width: 960px) {
55+
min-height: 1200px;
56+
}
57+
5158
`;
5259

5360
export const SignUp = styled.p`

0 commit comments

Comments
 (0)