part of the private lobby
This commit is contained in:
parent
12b3f0b5eb
commit
32658c741c
2
.gitignore
vendored
2
.gitignore
vendored
@ -136,3 +136,5 @@ dmypy.json
|
|||||||
|
|
||||||
# Cython debug symbols
|
# Cython debug symbols
|
||||||
cython_debug/
|
cython_debug/
|
||||||
|
|
||||||
|
frontend/package-lock.json
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
|
"pretty-checkbox": "^3.0.3",
|
||||||
"socket.io-client": "^3.0.3",
|
"socket.io-client": "^3.0.3",
|
||||||
"vue": "^2.6.11",
|
"vue": "^2.6.11",
|
||||||
"vue-socket.io": "^3.0.10"
|
"vue-socket.io": "^3.0.10"
|
||||||
|
@ -134,6 +134,7 @@ export default {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
@import '../node_modules/pretty-checkbox/dist/pretty-checkbox.css';
|
||||||
#app {
|
#app {
|
||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
@ -3,6 +3,14 @@
|
|||||||
<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>
|
||||||
|
<div v-if="startGameCard">
|
||||||
|
<div class="pretty p-switch p-fill">
|
||||||
|
<input type="checkbox" />
|
||||||
|
<div class="state">
|
||||||
|
<label>Stanza Privata</label>
|
||||||
|
</div>
|
||||||
|
</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;"> -->
|
||||||
|
Loading…
Reference in New Issue
Block a user