diff --git a/public/10minutesRemaining.mp3 b/public/10minutesRemaining.mp3 new file mode 100644 index 0000000..c4763b8 Binary files /dev/null and b/public/10minutesRemaining.mp3 differ diff --git a/public/30minutesRemaining.mp3 b/public/30minutesRemaining.mp3 new file mode 100644 index 0000000..71dcc94 Binary files /dev/null and b/public/30minutesRemaining.mp3 differ diff --git a/public/5minutesRemaining.mp3 b/public/5minutesRemaining.mp3 new file mode 100644 index 0000000..24e97d2 Binary files /dev/null and b/public/5minutesRemaining.mp3 differ diff --git a/public/notificationSound.mp3 b/public/notificationSound.mp3 new file mode 100644 index 0000000..e1eb503 Binary files /dev/null and b/public/notificationSound.mp3 differ diff --git a/public/theTimeIsUpSound.mp3 b/public/theTimeIsUpSound.mp3 new file mode 100644 index 0000000..f96a5fc Binary files /dev/null and b/public/theTimeIsUpSound.mp3 differ diff --git a/src/components/PokerRoom/PokerBoard.vue b/src/components/PokerRoom/PokerBoard.vue index d5c3885..f820ec5 100644 --- a/src/components/PokerRoom/PokerBoard.vue +++ b/src/components/PokerRoom/PokerBoard.vue @@ -128,7 +128,9 @@ export default { .votes { flex: 1; + gap: 40px 12px; display: flex; + flex-wrap: wrap; justify-content: center; align-items: center; } @@ -143,7 +145,7 @@ export default { .bottomSection__votingCards { display: flex; - flex-wrap: nowrap; + flex-wrap: wrap; width: 100%; justify-content: center; align-self: flex-end; diff --git a/src/components/PokerRoom/ProgressBar.vue b/src/components/PokerRoom/ProgressBar.vue index 4ba41c4..18be26c 100644 --- a/src/components/PokerRoom/ProgressBar.vue +++ b/src/components/PokerRoom/ProgressBar.vue @@ -3,11 +3,11 @@
- {{progress}} / {{participantsNumber}} + {{ progress }} / {{ participantsNumber }}
@@ -19,6 +19,11 @@ export default { progress: Number, participantsNumber: Number, }, + computed: { + progressPercentage() { + return (this.progress / this.participantsNumber) * 100; + }, + }, }; @@ -27,6 +32,12 @@ export default { width: 100%; height: 40px; text-align: center; + margin: 20px auto 0; + + @media screen and (max-width: 720px) { + height: 20px; + width: 60%; + } } .progressBar { diff --git a/src/components/PokerRoom/Timer.vue b/src/components/PokerRoom/Timer.vue index a4da156..17342be 100644 --- a/src/components/PokerRoom/Timer.vue +++ b/src/components/PokerRoom/Timer.vue @@ -1,17 +1,18 @@