diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-12-26 17:50:58 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-12-26 17:51:42 +0100 |
commit | d80224934e01f19573852a50ae50d5f12ff04799 (patch) | |
tree | 174cc856fdf9f3c8a156686d5e6c8223c1bfc650 /misc/dist/html/editor.html | |
parent | 6019dab0b45e1291e556e6d9e01b625b5076cc3c (diff) |
Fix and decrease Godot logo size in the HTML5 editor loader
The logo can no longer overflow the viewport.
Diffstat (limited to 'misc/dist/html/editor.html')
-rw-r--r-- | misc/dist/html/editor.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dist/html/editor.html b/misc/dist/html/editor.html index bf608dfa49..18c759ace8 100644 --- a/misc/dist/html/editor.html +++ b/misc/dist/html/editor.html @@ -169,7 +169,7 @@ <option value="GLES3">WebGL 2</option> </select> <br /> - <img src="logo.svg"> + <img src="logo.svg" width="1024" height="414" style="width: auto; height: auto; max-width: 85%; max-height: 250px" /> <br /> <label for="zip-file" style="margin-right: 1rem">Preload project ZIP:</label> <input id="zip-file" type="file" id="files" name="files" style="margin-bottom: 1rem"/> <br /> |