From 85db9a171e80d4da05d6ef35f1a816dcb598821b Mon Sep 17 00:00:00 2001 From: Daniel Dyrnes Date: Thu, 7 Nov 2019 11:55:41 -0800 Subject: [PATCH] Logo on website is overlapping page title fix (#2932) 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: https://github.com/facebook/relay/pull/2932 Differential Revision: D18376439 Pulled By: kassens fbshipit-source-id: b450b809139f99111ec385c963b10df11473babe --- website/static/css/custom.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/static/css/custom.css b/website/static/css/custom.css index b5c0e33b4a5be..5f3c8cc7e9266 100644 --- a/website/static/css/custom.css +++ b/website/static/css/custom.css @@ -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; + } +}