diff options
| author | netop://ウィビ <paul@webb.page> | 2026-04-26 20:18:30 -0700 |
|---|---|---|
| committer | netop://ウィビ <paul@webb.page> | 2026-04-26 20:18:30 -0700 |
| commit | 3c06c95f396b6e911076bc3291d5855ed01b5caa (patch) | |
| tree | 17cd218339c52fbeee93d931303b04a3ff294f8b /playground/index.html | |
| parent | f059d97ab7f6d74d61139ac698cb871be7cb632e (diff) | |
| download | graphiql-3c06c95f396b6e911076bc3291d5855ed01b5caa.tar.gz graphiql-3c06c95f396b6e911076bc3291d5855ed01b5caa.zip | |
cleanup and ready for launch
Diffstat (limited to 'playground/index.html')
| -rw-r--r-- | playground/index.html | 26 |
1 files changed, 23 insertions, 3 deletions
diff --git a/playground/index.html b/playground/index.html index 7487569..53015ed 100644 --- a/playground/index.html +++ b/playground/index.html @@ -3,12 +3,32 @@ <head> <meta charset="UTF-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> - <title>@eeeooolll/graphiql · playground</title> + + <title>@eeeooolll/graphiql • playground</title> + <link rel="icon" href="./src/favicon.svg"/> + <style> - html, body, #app { height: 100%; margin: 0; } - body { background: #1e1e1e; color: #d4d4d4; font-family: ui-monospace, SFMono-Regular, monospace; } + *, + *::before, + *::after { + margin: 0; padding: 0; + box-sizing: inherit; + } + + html { + width: 100%; height: 100%; + + box-sizing: border-box; + overscroll-behavior: none; + } + + body, + #app { + width: inherit; height: inherit; + } </style> </head> + <body> <div id="app"></div> <script type="module" src="./src/main.ts"></script> |