Merge branch 'dev' into main

This commit is contained in:
Giulio 2020-11-28 21:33:20 +01:00
commit 400631a5a2
2 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@
<div v-else>
<div v-if="!isInLobby" >
<p>{{$t("online_players")}}{{onlinePlayers}}</p>
<Card :card="getSelfCard" style="position:absolute; bottom:10pt; left: 10pt;"/>
<Card :card="getSelfCard" style="position:absolute; top:10pt; left: 10pt;"/>
<h2>{{$t("available_lobbies")}}</h2>
<div style="display: flex">
<Card v-for="lobby in openLobbies" v-bind:key="lobby.name" :card="getLobbyCard(lobby)" @click.native="joinLobby(lobby)"/>
@ -36,7 +36,7 @@
<h2>{{$t("warning")}}</h2>
<p>{{$t("connection_error")}}</p>
</div>
<select style="position:absolute;bottom:4pt;right:4pt;" v-model="$i18n.locale">
<select style="position:fixed;bottom:4pt;right:4pt;" v-model="$i18n.locale">
<option
v-for="(lang, i) in ['it.🇮🇹.Italiano', 'en.🇬🇧.English']"
:key="`lang-${i}`"

View File

@ -70,7 +70,7 @@ export default {
}
.card.usable-next-turn {
box-shadow:
0 0 0 3pt rgb(192,192,117), 0 0 0 6pt white, 0 0 5pt 6pt #aaa
0 0 0 3pt #6aa16e, 0 0 0 6pt white, 0 0 5pt 6pt #aaa
}
.card h4 {
position: absolute;
@ -133,7 +133,7 @@ export default {
}
.card.usable-next-turn {
box-shadow:
0 0 0 3pt rgb(192,192,117), 0 0 0 6pt #181a1b, 0 0 5pt 6pt #aaa
0 0 0 3pt #6aa16e, 0 0 0 6pt #181a1b, 0 0 5pt 6pt #aaa
}
}
</style>