Skip to content

Commit

Permalink
Merge pull request #8 from edgeandnode/piotr/studio-integration-2
Browse files Browse the repository at this point in the history
Styling tweaks and a very stupid bugfix
  • Loading branch information
hasparus committed Oct 4, 2022
2 parents 6b982a1 + 3e3bfd5 commit a98ea06
Show file tree
Hide file tree
Showing 11 changed files with 280 additions and 541 deletions.
14 changes: 3 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,14 @@
<style>
html {
background: var(--theme-ui-colors-Background),
linear-gradient(
0deg,
rgba(255, 255, 255, 0.04),
rgba(255, 255, 255, 0.04)
),
linear-gradient(
0deg,
rgba(111, 76, 255, 0.04),
rgba(111, 76, 255, 0.04)
),
rgb(12, 10, 29);
linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
linear-gradient(0deg, rgba(111, 76, 255, 0.04), rgba(111, 76, 255, 0.04)), rgb(12, 10, 29);
}
#root {
height: 100vh;
max-width: 1288px;
margin: 0 auto;
padding: 2rem;
}
</style>
</head>
Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"name": "@edgeandnode/graphiql-playground",
"version": "0.1.6",
"version": "0.1.13",
"type": "commonjs",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.cjs.js",
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
Expand Down
Loading

0 comments on commit a98ea06

Please sign in to comment.