From 73f8753ff5abf6c5819684920565e655b6858175 Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Mon, 30 Mar 2020 15:46:15 +0200 Subject: [PATCH] Improve display --- client/src/components/UploadGame.vue | 4 ++++ client/src/views/MyGames.vue | 16 ++++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/client/src/components/UploadGame.vue b/client/src/components/UploadGame.vue index 269cc04d..369333c1 100644 --- a/client/src/components/UploadGame.vue +++ b/client/src/components/UploadGame.vue @@ -37,6 +37,10 @@ export default { input#upload display: none +button#uploadBtn + display: block + margin: 0 auto + img.inline height: 22px @media screen and (max-width: 767px) diff --git a/client/src/views/MyGames.vue b/client/src/views/MyGames.vue index 4eeb9862..890d9395 100644 --- a/client/src/views/MyGames.vue +++ b/client/src/views/MyGames.vue @@ -23,6 +23,10 @@ main @show-game="showGame" @abortgame="abortGame" ) + UploadGame( + v-show="display=='import'" + @game-uploaded="addGameImport" + ) GameList( v-show="display=='import'" ref="importgames" @@ -34,7 +38,6 @@ main @click="loadMore(display)" ) | {{ st.tr["Load more"] }} - UploadGame(@game-uploaded="addGameImport")