Skip to content

Commit 760d744

Browse files
neyser zananeyser zana
authored andcommitted
resolved conflicts
2 parents be38f0a + 36df718 commit 760d744

File tree

14 files changed

+72
-48
lines changed

14 files changed

+72
-48
lines changed
656 KB
Loading

build/webpack-bundle.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/webpack-bundle.js.map

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.css

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ h2{
1818

1919
#app-container{
2020
display: flex;
21-
padding: 10px 25px;
21+
padding: 10px;
2222
max-height: 95%;
2323
}
2424

@@ -31,7 +31,7 @@ h2{
3131
padding: 10px;
3232
display: grid;
3333
grid-template-rows: 1fr 3fr;
34-
grid-template-columns: 1fr 3fr;
34+
grid-template-columns: 3fr 7fr;
3535
grid-template-areas:
3636
'sp-box tree'
3737
'diff tree';
@@ -54,7 +54,6 @@ h2{
5454
}
5555

5656
#treeWrapper{
57-
text-align: center;
5857
grid-area: tree;
5958
height: 700px;
6059
padding: 10px;
@@ -63,6 +62,9 @@ h2{
6362
font-size: .9em;
6463
letter-spacing: 1.5px;
6564
}
65+
#treeButtons{
66+
text-align: center;
67+
}
6668

6769
.rd3t-tree-container{
6870
margin-top: 15px;
@@ -128,7 +130,6 @@ button:focus{
128130
}
129131
button:hover{
130132
background-color: #555;
131-
border: none;
132133
color: white;
133134
}
134135
.active{

public/graphql.css

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
}
1515

1616
#graphql-res {
17-
background-color: rgba(214, 214, 214, 0.4);
18-
border: 1px solid rgba(0, 0, 0, 0.3);
19-
border-radius: 5px;
20-
padding: 10px;
17+
background-color: white;;
18+
box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
19+
0 5px 15px 0 rgba(0,0,0,0.08);
20+
padding: 10px 25px;
2121
margin-bottom: 10px;
2222
}
2323

@@ -30,10 +30,6 @@
3030
padding: 10px;
3131
}
3232

33-
.graphql {
34-
padding: 5px;
35-
}
36-
3733
.graphql-p {
3834
margin-top: 10px;
3935
}

public/log-container.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#log-container{
22
padding: 10px;
3-
width: 250px;
3+
/* width: 250px; */
44
max-height: 700px;
55
height: 700px;
66
}

public/stateContainer.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
max-height: 500px;
44
overflow-y: scroll;
55
padding: 10px;
6-
margin-top: 10px;
7-
margin-right: 10px;
86
}
97

108
#state-header{
@@ -22,10 +20,11 @@
2220
box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
2321
0 5px 15px 0 rgba(0,0,0,0.08);
2422
margin-bottom: 15px;
25-
padding: 10px;
23+
padding: 0px 10px;
2624
}
2725

2826
.state-span{
27+
font-family: 'Roboto';
2928
margin: 6px;
3029
font-size: 1.2em;
3130
font-weight: 500;

src/components/GraphQLResponse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const GraphQLResponse = ({ logs, log }) => {
1010
{logs.length !== 0
1111
?
1212
<div className="graphql">
13-
<p className='graphql-p'><b>Response:</b></p>
13+
<p className='graphql-p'><h2>Response:</h2></p>
1414
<span className='graphql-span'>
1515
<ReactJson
1616
src={response}

src/components/GraphQLSchema.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ const GraphQLSchema = ({ schema }) => {
1111

1212
return (
1313
<div id='graphql-schema'>
14-
<div className='graphql'>
15-
<p className='graphql-p'><b>Schema:</b></p>
14+
<div>
15+
<p className='graphql-p'><h2>Schema:</h2></p>
1616
<span className='graphql-span'>
1717
<GraphqlCodeBlock
1818
className='GraphqlCodeBlock'
@@ -27,7 +27,7 @@ const GraphQLSchema = ({ schema }) => {
2727

2828
return (
2929
<div id='graphql'>
30-
<div className='graphql'>
30+
<div>
3131
<p className='graphql-p'>
3232
No GraphQL data available.
3333
</p>

src/components/Log/Log.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ const Log = props => {
1010
</p>
1111
<p className='log-p'>
1212
<b>Operation Name:</b> {props.operationName}
13+
{/* {props.operationName !== null ? (<b>Operation Name:</b>props.operationName) : null} */}
1314
</p>
1415
<p className='log-p'>
1516
<b>Query:</b>

0 commit comments

Comments
 (0)