Skip to content

Commit b8b6165

Browse files
douglasmuraokadavimacedo
authored andcommitted
fix: GraphQL console headers menu not visible (#1141)
1 parent 1fc56d4 commit b8b6165

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

src/dashboard/Data/ApiConsole/ApiConsole.scss

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,20 @@
2323

2424
.content {
2525
position: relative;
26-
min-height: 100vh;
27-
padding-top: 96px;
26+
height: calc(100vh - 96px);
27+
margin-top: 96px;
28+
29+
// Workaround to override graphql-playground-react
30+
// animations and query editor height
31+
& > div > div {
32+
opacity: 1;
33+
transform: unset;
34+
animation: unset;
35+
36+
& > div > :nth-child(2){
37+
height: calc(100vh - 153px);
38+
}
39+
}
2840
}
2941

3042
.empty {

0 commit comments

Comments
 (0)