Skip to content

Commit

Permalink
fix style regressions
Browse files Browse the repository at this point in the history
  • Loading branch information
tessalt committed Apr 3, 2017
1 parent f054f92 commit 5db7f87
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
13 changes: 5 additions & 8 deletions css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@

.graphiql-container .title {
font-size: 18px;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
}

.graphiql-container .title em {
Expand All @@ -48,8 +43,6 @@
}

.graphiql-container .topBarWrap {
position: relative;
display: -webkit-flex;
display: flex;
flex-direction: row;
}
Expand Down Expand Up @@ -82,6 +75,7 @@
cursor: pointer;
font-size: 14px;
margin: 0;
outline: 0;
padding: 2px 20px 0 18px;
}

Expand Down Expand Up @@ -185,12 +179,13 @@
.graphiql-container .codemirrorWrap {
flex: 1;
height: 100%;
position: relative;
}

.graphiql-container .result-window {
flex: 1;
position: relative;
height: 100%;
position: relative;
}

.graphiql-container .footer {
Expand Down Expand Up @@ -290,6 +285,7 @@
.graphiql-container .execute-button {
background: linear-gradient(#fdfdfd, #d2d3d6);
border-radius: 17px;
border: 1px solid rgba(0,0,0,0.25);
box-shadow: 0 1px 0 #fff;
cursor: pointer;
fill: #444;
Expand Down Expand Up @@ -478,6 +474,7 @@
div.CodeMirror-lint-tooltip {
background-color: white;
border-radius: 2px;
border: 0;
color: #141823;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
font-family:
Expand Down
2 changes: 1 addition & 1 deletion src/components/GraphiQL.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import {
} from '../utility/introspectionQueries';

/**
* This React component is responsible for rendering the GraphiQL editor.
* The top-level React component for GraphiQL, intended to encompass the entire
* browser viewport.
*
* @see https://github.com/graphql/graphiql#usage
Expand Down

0 comments on commit 5db7f87

Please sign in to comment.