Skip to content

Commit

Permalink
fix(graphiql): fix icon alignment issue (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjie committed Sep 11, 2020
1 parent 4535dab commit 50ccb77
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion postgraphiql/src/index.css
@@ -1,8 +1,16 @@
@import '~graphiql/graphiql.css';

html, body, #root {
html,
body,
#root {
height: 100%;
margin: 0;
overflow: hidden;
width: 100%;
}

/* Fix weird search alignment issue */
.graphiql-container .search-box:before {
line-height: 1em;
top: 1px;
}

0 comments on commit 50ccb77

Please sign in to comment.