Skip to content

Commit

Permalink
Logo on website is overlapping page title fix (#2932)
Browse files Browse the repository at this point in the history
Summary:
This PR is to resolve issue [https://github.com/facebook/relay/issues/2788](https://github.com/facebook/relay/issues/2788).

Added media query to fix issue where the project logo will overlap the title text on 1400px wide screens.
Pull Request resolved: #2932

Differential Revision: D18376439

Pulled By: kassens

fbshipit-source-id: b450b809139f99111ec385c963b10df11473babe
  • Loading branch information
thedanielforum authored and facebook-github-bot committed Nov 7, 2019
1 parent 8d29404 commit 85db9a1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions website/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,9 @@
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

@media only screen and (max-width: 1500px) {
.homeContainer .homeWrapper .projectLogo {
padding: 2em 0px 4em;
}
}

0 comments on commit 85db9a1

Please sign in to comment.