We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ff0d78 commit 9c942beCopy full SHA for 9c942be
2 files changed
CHANGELOG.md
@@ -157,6 +157,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
157
- Updated husky script to avoid warning
158
- Resolved incorrect meta tag rendering for nested routes
159
- Prevent horizontal page scroll caused by overflowing long titles
160
+- Fix hero images' max-height to align with WDP mockup
161
162
### Changed
163
components/layout/Hero/styles.js
@@ -10,7 +10,8 @@ const Header = styled.div`
10
11
${props => css`
12
@media (min-width: ${props.theme.breakpoints.desktop}) {
13
- min-height: 100vh;
+ height: 100vh;
14
+ max-height: 56.25rem;
15
}
16
`}
17
`;
0 commit comments