Skip to content

Commit

Permalink
Merge pull request #31 from TexasCamp/release
Browse files Browse the repository at this point in the history
Deploy #29 and #30 to dev
  • Loading branch information
rocketeerbkw authored Aug 30, 2019
2 parents b8a0693 + 16eab07 commit 3a887bd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 11 deletions.
26 changes: 17 additions & 9 deletions frontend/app/screens/Sponsors/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,25 @@
justify-content: space-between;
margin-bottom: 20px;
div {
align-items: center;
background-color: $lighterGrey;
display: flex;
justify-content: center;
margin-bottom: 20px;
img {
display: block;
}
&:hover {
background-color: $almostWhite;

a {
align-items: center;
background-color: $lighterGrey;
display: flex;
height: 100%;
justify-content: center;
padding: 10px;

&:hover {
background-color: $almostWhite;
}

img {
display: block;
}
}

@media $xs_small {
width: calc(50% - 10px);
}
Expand Down
8 changes: 6 additions & 2 deletions frontend/app/shared/state/configureApolloClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ const addGetRequests = networkInterface => {
.reduce(
(carry, current) => [
...carry,
[`${current}=${JSON.stringify(printedRequest[current])}`],
[
`${current}=${encodeURIComponent(
JSON.stringify(printedRequest[current]),
)}`,
],
],
[],
)
Expand Down Expand Up @@ -62,7 +66,7 @@ const addGetRequests = networkInterface => {
.reduce(
(carry, current, index) => [
...carry,
[`${index}=${JSON.stringify(current)}`],
[`${index}=${encodeURIComponent(JSON.stringify(current))}`],
],
[],
)
Expand Down

0 comments on commit 3a887bd

Please sign in to comment.