minor style

This commit is contained in:
Alberto Xamin 2020-11-25 21:16:41 +01:00
parent 973816ca1a
commit 1f3412a410
No known key found for this signature in database
GPG Key ID: 4F026F48309500A2
2 changed files with 5 additions and 4 deletions

View File

@ -163,7 +163,7 @@ export default {
zoom: 0.8; zoom: 0.8;
} }
} }
h1,h2,h3,h4,p,span{ h1,h2,h3,h4,p,span,b,label{
font-family: Avenir, Helvetica, Arial, sans-serif; font-family: Avenir, Helvetica, Arial, sans-serif;
} }
.center-stuff { .center-stuff {

View File

@ -3,10 +3,11 @@
<div style="flex-grow: 4;"> <div style="flex-grow: 4;">
<h2 v-if="!started">Lobby: {{ lobbyName }}</h2> <h2 v-if="!started">Lobby: {{ lobbyName }}</h2>
<h3>Giocatori (tu sei {{username}})</h3> <h3>Giocatori (tu sei {{username}})</h3>
<h3 v-if="!started && password !== ''">Password: <span class="selectable">{{ password }}</span></h3> <div v-if="!started" >
<div v-if="!started && isRoomOwner"> <PrettyCheck v-if="isRoomOwner" class="p-switch p-fill" v-model="privateRoom">Stanza Privata</PrettyCheck>
<PrettyCheck class="p-switch p-fill" v-model="privateRoom">Stanza Privata</PrettyCheck> <label v-if="password !== ''">Password: <b class="selectable" style="font-size:larger;">{{ password }}</b></label>
</div> </div>
<div class="players-table"> <div class="players-table">
<Card v-if="startGameCard" :card="startGameCard" @click.native="startGame"/> <Card v-if="startGameCard" :card="startGameCard" @click.native="startGame"/>
<!-- <div style="position: relative;width:260pt;height:400pt;"> --> <!-- <div style="position: relative;width:260pt;height:400pt;"> -->