Minor fixes

This commit is contained in:
thepaperpilot 2021-03-23 23:32:38 -05:00
parent 1763c851a1
commit 1af91bd60f
2 changed files with 3 additions and 1 deletions

View file

@ -12,6 +12,7 @@
<noscript> <noscript>
<strong>We're sorry but Dream Hero doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> <strong>We're sorry but Dream Hero doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
</noscript> </noscript>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<div id="app"></div> <div id="app"></div>
<!-- built files will be auto injected --> <!-- built files will be auto injected -->
</body> </body>

View file

@ -12,7 +12,7 @@
<Town /> <Town />
<Dream ref="dream" /> <Dream ref="dream" />
</div> </div>
<transition name="app" v-else> <transition name="welcome" v-else>
<div class="welcome" v-on:click="start"> <div class="welcome" v-on:click="start">
<img src="assets/logo.png" alt="Dream Hero" /> <img src="assets/logo.png" alt="Dream Hero" />
</div> </div>
@ -61,6 +61,7 @@ export default {
} }
html { html {
min-width: 640px;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }