diff options
| author | raysan5 <[email protected]> | 2017-04-23 19:24:39 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2017-04-23 19:24:39 +0200 |
| commit | 332f3b4f9d58eabf54f44a348de24d73d728f560 (patch) | |
| tree | 1bd549570661c181fe67d6f29bc2e27df2ecbe65 /templates/web_shell/shell.html | |
| parent | 3c99093aed98317bd554806fffb66ac85baeb0e2 (diff) | |
| download | raylib-332f3b4f9d58eabf54f44a348de24d73d728f560.tar.gz raylib-332f3b4f9d58eabf54f44a348de24d73d728f560.zip | |
Set canvas background to black...
..to avoid blending issues with white background
Diffstat (limited to 'templates/web_shell/shell.html')
| -rw-r--r-- | templates/web_shell/shell.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/web_shell/shell.html b/templates/web_shell/shell.html index d602b5b5..d9a3c49e 100644 --- a/templates/web_shell/shell.html +++ b/templates/web_shell/shell.html @@ -57,7 +57,7 @@ div.emscripten_border { border: 1px solid black; } /* the canvas *must not* have any border or padding, or mouse coords will be wrong */ - canvas.emscripten { border: 0px none; } + canvas.emscripten { border: 0px none; background: black; } #emscripten_logo { display: inline-block; |
