diff --git a/platform/rustboyadvance-wasm/app/index.html b/platform/rustboyadvance-wasm/app/index.html index b03cf72..ca0fa13 100644 --- a/platform/rustboyadvance-wasm/app/index.html +++ b/platform/rustboyadvance-wasm/app/index.html @@ -10,6 +10,12 @@ background-color: #675ea7; font-family: "Courier New", Courier, monospace; } + #logo { + text-align: center; + align-items: center; + justify-content: center; + + } #menu { background-color: #423c6c; display: flexbox; @@ -86,6 +92,7 @@

         
+        
     
diff --git a/platform/rustboyadvance-wasm/app/webpack.config.js b/platform/rustboyadvance-wasm/app/webpack.config.js index 80ad814..b72be4f 100644 --- a/platform/rustboyadvance-wasm/app/webpack.config.js +++ b/platform/rustboyadvance-wasm/app/webpack.config.js @@ -9,6 +9,6 @@ module.exports = { }, mode: "development", plugins: [ - new CopyWebpackPlugin(['index.html']) + new CopyWebpackPlugin(['index.html', '../../../assets/icon.svg']) ], };