quick timetable style fix
All checks were successful
CI / build (push) Successful in 16s
CI / lint (push) Successful in 19s
CI / create-and-publish-docker-image (push) Successful in 40s

This commit is contained in:
2025-09-24 20:14:48 +02:00
parent ff89115f36
commit 13818fcaa6
2 changed files with 13 additions and 4 deletions

View File

@@ -39,8 +39,8 @@ const makeCrewmate = (imposter: boolean): Amogus => ({
isImposter: imposter,
posX: randNum(0, width - amogusWidth),
posY: randNum(0, height - amogusHeight),
speedX: Math.random() > 0.5 ? randNum(1, 2) : randNum(-1, -2),
speedY: Math.random() > 0.5 ? randNum(1, 2) : randNum(-1, -2),
speedX: Math.random() > 0.5 ? randNum(4, 10) : randNum(-4, -10),
speedY: Math.random() > 0.5 ? randNum(4, 10) : randNum(-4, -10),
});
const intersect = (c1: Amogus, c2: Amogus): boolean =>

View File

@@ -1,7 +1,7 @@
.container {
display: flex;
flex-direction: column;
align-items: ;
align-items: stretch;
padding: 0 10px 20px 10px;
margin-bottom: 20px;
border-top: 2px solid white;
@@ -13,10 +13,19 @@
.departureLists {
display: flex;
flex-direction: row;
width: 600px;
justify-content: space-between;
min-width: 300px;
padding-top: 20px;
}
.heading {
text-align: left;
padding-left: 30px;
}
.departureTable {
display: flex;
flex-direction: column;
padding-left: 80px;
padding-right: 80px;
}