0
0
Fork 0

Update the answer containers to fit properly

This commit is contained in:
Oliver-Akins 2021-03-19 19:43:17 -06:00
parent d93045e65d
commit 8890bd7284

View file

@ -1,7 +1,7 @@
<template> <template>
<div id="GameBoard"> <div id="GameBoard">
<div id="other-team-answers" class="team-container"> <div id="other-team-answers" class="team-container">
<div class="answer-container"> <div class="answer-container maximize">
<!-- <!--
Repeats to create the number of team answers that we need, Repeats to create the number of team answers that we need,
these text inputs are always disabled for the player as these these text inputs are always disabled for the player as these
@ -46,7 +46,7 @@
</div> </div>
</div> </div>
<div id="team-answers" class="team-container"> <div id="team-answers" class="team-container">
<div class="answer-container"> <div class="answer-container maximize">
<!-- <!--
This repeats to create the volume oftext inputs that we need, This repeats to create the volume oftext inputs that we need,
only allowing the text inputs to be used by the spirit players only allowing the text inputs to be used by the spirit players
@ -194,8 +194,7 @@ h2 {
} }
.team-container { .team-container {
grid-template-rows: 50px 1fr; height: 100%;
display: grid;
width: 45%; width: 45%;
} }