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 { .waiting {
font-size: 2vmin; font-size: 4vmin;
height: 10vmin; height: 16vmin;
display: flex; display: flex;
align-items: center; align-items: center;
} }

View file

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