Skip to content

Commit 4c8cbe0

Browse files
alencarlucasdavimacedo
authored andcommitted
Fix: Scroll is not working properly (#1151)
* fix: Apps Selector not closing after select app * fix: Scrolling pages is not working * fix: GraphQL empty state is unaligned
1 parent 3038fae commit 4c8cbe0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/dashboard/Dashboard.scss

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
.content {
99
margin-left: 300px;
1010
transition: margin-left 0.5s ease-in;
11+
overflow: auto;
12+
max-height: 100vh;
1113
}
1214

1315
@media (max-width: 980px) {

src/dashboard/Data/ApiConsole/ApiConsole.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@
2525
position: relative;
2626
height: calc(100vh - 96px);
2727
margin-top: 96px;
28+
overflow: hidden;
2829

2930
// Workaround to override graphql-playground-react
3031
// animations and query editor height
31-
& > div > div {
32+
& > div:not(.empty) > div {
3233
opacity: 1;
3334
transform: unset;
3435
animation: unset;

0 commit comments

Comments
 (0)