Skip to content

Commit d66c920

Browse files
author
Tejas Kumar
committed
Housekeeping
1 parent 89de766 commit d66c920

File tree

3 files changed

+31
-9
lines changed

3 files changed

+31
-9
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Basically, Fullstack GraphQL
1+
# Basically, Full-stack GraphQL
22

3-
This _pretty trivial_ project aims at introduction a newcomer to GraphQL and the way it works. The code aims to explain the client and the server side.
3+
This _fairly trivial_ project aims at introducing a newcomer to GraphQL and the way it works. The code aims to explain the client and the server side of things.
44

5-
The source code has been heavily commented and documented in order to explain what's going on. It is highly recommended to read through, do _not_ be afraid!
5+
The source code has been heavily commented and documented in order to explain what's going on. It is highly recommended to read through it. Do _not_ be afraid!
66

77
## Getting Started
88

Diff for: package.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "basically-fullstack-graphql",
33
"version": "1.0.0",
4+
"private": true,
45
"main": "index.js",
56
"license": "MIT",
67
"author": "Tejas Kumar <[email protected]>",

Diff for: src/client/index.css

+27-6
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,24 @@ a:hover {
2323
.app {
2424
width: 100vw;
2525
height: 100vh;
26+
display: -webkit-box;
27+
display: -ms-flexbox;
2628
display: flex;
27-
align-items: center;
28-
flex-direction: column;
29-
justify-content: center;
29+
-webkit-box-align: center;
30+
-ms-flex-align: center;
31+
align-items: center;
32+
-webkit-box-orient: vertical;
33+
-webkit-box-direction: normal;
34+
-ms-flex-direction: column;
35+
flex-direction: column;
36+
-webkit-box-pack: center;
37+
-ms-flex-pack: center;
38+
justify-content: center;
3039
}
3140

3241
.app__search-container {
42+
display: -webkit-box;
43+
display: -ms-flexbox;
3344
display: flex;
3445
}
3546

@@ -48,7 +59,8 @@ a:hover {
4859
border: 0;
4960
background-color: var(--color__vue-green);
5061
color: white;
51-
appearance: none;
62+
-moz-appearance: none;
63+
appearance: none;
5264
-webkit-appearance: none;
5365
}
5466

@@ -58,9 +70,16 @@ a:hover {
5870
}
5971

6072
.results-list {
73+
display: -webkit-box;
74+
display: -ms-flexbox;
6175
display: flex;
62-
flex-direction: column;
63-
align-items: center;
76+
-webkit-box-orient: vertical;
77+
-webkit-box-direction: normal;
78+
-ms-flex-direction: column;
79+
flex-direction: column;
80+
-webkit-box-align: center;
81+
-ms-flex-align: center;
82+
align-items: center;
6483
padding: 0;
6584
list-style-type: none;
6685
}
@@ -70,6 +89,8 @@ a:hover {
7089
}
7190

7291
.card {
92+
display: -webkit-box;
93+
display: -ms-flexbox;
7394
display: flex;
7495
margin: 16px 0;
7596
padding: 16px;

0 commit comments

Comments
 (0)