From cd471c1c6f90c380f6a50300a348f39def6b9d8f Mon Sep 17 00:00:00 2001 From: alencarlucas Date: Tue, 16 Jul 2019 15:47:15 -0300 Subject: [PATCH 1/3] fix: Apps Selector not closing after select app --- src/components/Sidebar/AppsMenu.react.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Sidebar/AppsMenu.react.js b/src/components/Sidebar/AppsMenu.react.js index 71c971c098..18d8d451a8 100644 --- a/src/components/Sidebar/AppsMenu.react.js +++ b/src/components/Sidebar/AppsMenu.react.js @@ -23,7 +23,7 @@ let AppsMenu = ({ apps, current, height, onSelect }) => ( return null; } return ( - + {app.name} From 010a312f4b84dffaa57253423fb33d8b8e06f850 Mon Sep 17 00:00:00 2001 From: alencarlucas Date: Wed, 17 Jul 2019 11:59:03 -0300 Subject: [PATCH 2/3] fix: Scrolling pages is not working --- src/dashboard/Dashboard.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/dashboard/Dashboard.scss b/src/dashboard/Dashboard.scss index 3ba8ac0559..b517ad6708 100644 --- a/src/dashboard/Dashboard.scss +++ b/src/dashboard/Dashboard.scss @@ -8,6 +8,8 @@ .content { margin-left: 300px; transition: margin-left 0.5s ease-in; + overflow: auto; + max-height: 100vh; } @media (max-width: 980px) { From db8d58eaa6af99b865b18fefcf6b30e025ef42b0 Mon Sep 17 00:00:00 2001 From: alencarlucas Date: Wed, 17 Jul 2019 11:59:55 -0300 Subject: [PATCH 3/3] fix: GraphQL empty state is unaligned --- src/dashboard/Data/ApiConsole/ApiConsole.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dashboard/Data/ApiConsole/ApiConsole.scss b/src/dashboard/Data/ApiConsole/ApiConsole.scss index 8c838b0928..f46c00e3cd 100644 --- a/src/dashboard/Data/ApiConsole/ApiConsole.scss +++ b/src/dashboard/Data/ApiConsole/ApiConsole.scss @@ -25,10 +25,11 @@ position: relative; height: calc(100vh - 96px); margin-top: 96px; + overflow: hidden; // Workaround to override graphql-playground-react // animations and query editor height - & > div > div { + & > div:not(.empty) > div { opacity: 1; transform: unset; animation: unset;