We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b624bf commit fceb76cCopy full SHA for fceb76c
packages/homepage/src/screens/home/hero/elements.js
@@ -40,14 +40,21 @@ export const HeroWrapper = styled.section`
40
overflow: hidden;
41
padding: 0 2rem;
42
43
- height: 100vh;
44
- min-height: 1080px;
+ height: 80vh;
+ min-height: 768px;
45
46
perspective: 1000;
47
+ }
48
- ${props => props.theme.breakpoints.sm} {
49
- min-height: 800px;
+ @media screen and (min-width: 576px) {
50
+ min-height: 1024px;
51
}
52
+
53
54
+ @media screen and (min-width: 960px) {
55
+ min-height: 1200px;
56
57
58
`;
59
60
export const SignUp = styled.p`
0 commit comments