Skip to content

Commit 9c942be

Browse files
committed
Fix max-height of hero images and update CHANGELOG
1 parent 1ff0d78 commit 9c942be

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
157157
- Updated husky script to avoid warning
158158
- Resolved incorrect meta tag rendering for nested routes
159159
- Prevent horizontal page scroll caused by overflowing long titles
160+
- Fix hero images' max-height to align with WDP mockup
160161

161162
### Changed
162163

components/layout/Hero/styles.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ const Header = styled.div`
1010
1111
${props => css`
1212
@media (min-width: ${props.theme.breakpoints.desktop}) {
13-
min-height: 100vh;
13+
height: 100vh;
14+
max-height: 56.25rem;
1415
}
1516
`}
1617
`;

0 commit comments

Comments
 (0)