diff --git a/client/src/App.vue b/client/src/App.vue
index 5a103c9..97e338b 100644
--- a/client/src/App.vue
+++ b/client/src/App.vue
@@ -59,6 +59,10 @@ onBeforeUnmount(async () => {
flex-direction: column;
height: 100vh;
justify-content: space-between;
+ @include for-phone-only {
+ min-height: 100vh;
+ height: unset;
+ }
}
:root {
--green: #42bd65;
diff --git a/client/src/components/GameInfo.vue b/client/src/components/GameInfo.vue
index 8d31853..0b1ab8d 100644
--- a/client/src/components/GameInfo.vue
+++ b/client/src/components/GameInfo.vue
@@ -10,17 +10,19 @@ defineProps<{
Game
-
- STAKE: {{ stake.dividedBy(1e18).toFormat(2) }} AE
+
+
+ STAKE: {{ stake.dividedBy(1e18).toFormat(2) }} AE
+
/
- ROUND: {{ round }}
+ ROUND: {{ round }}
+
diff --git a/client/src/components/Header.vue b/client/src/components/Header.vue
index 3478786..d4e77aa 100644
--- a/client/src/components/Header.vue
+++ b/client/src/components/Header.vue
@@ -25,6 +25,7 @@ const channelStore = useChannelStore();
.header {
display: flex;
justify-content: space-between;
+ align-items: flex-start;
padding: var(--padding);
padding-bottom: 5px;
height: 10%;
@@ -32,11 +33,4 @@ const channelStore = useChannelStore();
height: 15%;
}
}
-
-.center {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
-}
diff --git a/client/src/components/PlayerInfo.vue b/client/src/components/PlayerInfo.vue
index 44b215a..f2d277d 100644
--- a/client/src/components/PlayerInfo.vue
+++ b/client/src/components/PlayerInfo.vue
@@ -17,6 +17,8 @@ defineProps<{
diff --git a/client/src/components/PopUp.vue b/client/src/components/PopUp.vue
index a1a7e36..6cc84c9 100644
--- a/client/src/components/PopUp.vue
+++ b/client/src/components/PopUp.vue
@@ -9,8 +9,8 @@ const store = usePopUpStore();