This commit is contained in:
thepaperpilot 2023-02-18 22:03:06 -06:00
parent 26e013d0af
commit 63b75fc735
2 changed files with 4 additions and 4 deletions

View file

@ -45,8 +45,8 @@
}
.waiting {
font-size: 2vmin;
height: 10vmin;
font-size: 4vmin;
height: 16vmin;
display: flex;
align-items: center;
}

View file

@ -177,12 +177,12 @@ export const main = createLayer("main", function (this: BaseLayer) {
/>
))}
</Row>
<Spacer height="10vh" />
<Spacer height="4vh" />
{findingMatch.value ? (
<div class="waiting">Finding opposing team...</div>
) : (
<img
style="height: 10vmin; cursor: pointer"
style="height: 16vmin; cursor: pointer"
onClick={() => {
emit("stream");
findingMatch.value = true;