From 3b9e16f1c16f2d7265fdf2831e1c02d45c07e195 Mon Sep 17 00:00:00 2001 From: Alberto Xamin Date: Sat, 21 Nov 2020 15:41:18 +0100 Subject: [PATCH] equipment visualizer --- frontend/src/components/Lobby.vue | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/Lobby.vue b/frontend/src/components/Lobby.vue index c815381..a214f63 100644 --- a/frontend/src/components/Lobby.vue +++ b/frontend/src/components/Lobby.vue @@ -2,12 +2,15 @@

Lobby: {{ lobbyName }}

Giocatori (tu sei {{username}})

-
+
+
+ +
@@ -153,4 +156,21 @@ export default { transform: scale(1); } } +.tiny-equipment { + position: absolute; + display: flex; + flex-direction: column; + right: -35pt; + transform: scale(0.45); + transform-origin: 50% 0%; + top: 0; +} +.tiny-equipment .card:nth-child(n+2) { + margin-top: -60pt; +} +.players-table { + display: flex; + justify-content: space-evenly; + margin-bottom: 12pt; +}