From d8ea28806de3c76eb491d540877b52a9b162a0e2 Mon Sep 17 00:00:00 2001 From: RoLoDeXX Date: Sun, 23 Feb 2020 15:10:59 +0530 Subject: [PATCH 1/2] graphql logo position fix on small screens --- site/_css/index.less | 3 +++ 1 file changed, 3 insertions(+) diff --git a/site/_css/index.less b/site/_css/index.less index 58c9912670..3cba74fae5 100644 --- a/site/_css/index.less +++ b/site/_css/index.less @@ -125,6 +125,9 @@ body.index { display: block; width: 90px; height: 90px; + @media screen and (max-width: 768px) { + margin-top: 3rem; + } } } From 672a8937683c9994e6f11d02833f357b48585d31 Mon Sep 17 00:00:00 2001 From: Ivan Goncharov Date: Fri, 28 Aug 2020 17:59:17 +0300 Subject: [PATCH 2/2] Switch pixels to rem --- site/_css/index.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/_css/index.less b/site/_css/index.less index 3cba74fae5..2b2fcc41fa 100644 --- a/site/_css/index.less +++ b/site/_css/index.less @@ -125,7 +125,7 @@ body.index { display: block; width: 90px; height: 90px; - @media screen and (max-width: 768px) { + @media screen and (max-width: 55rem) { margin-top: 3rem; } }