diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2020-12-28 08:28:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-28 08:28:43 +0100 |
commit | 6fd9a1bb10636a9e4f24b3bbb0a77ad33b7e7b84 (patch) | |
tree | c1794aa430978f8632db9717e5868805d66150d4 | |
parent | 783ec77dbfbd3d94a79b14dadbfd6caa37e65334 (diff) | |
parent | d80224934e01f19573852a50ae50d5f12ff04799 (diff) |
Merge pull request #44701 from Calinou/html5-editor-fix-logo-size
Fix and decrease Godot logo size in the HTML5 editor loader
-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 /> |