quick timetable style fix
This commit is contained in:
@@ -39,8 +39,8 @@ const makeCrewmate = (imposter: boolean): Amogus => ({
|
|||||||
isImposter: imposter,
|
isImposter: imposter,
|
||||||
posX: randNum(0, width - amogusWidth),
|
posX: randNum(0, width - amogusWidth),
|
||||||
posY: randNum(0, height - amogusHeight),
|
posY: randNum(0, height - amogusHeight),
|
||||||
speedX: 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(1, 2) : randNum(-1, -2),
|
speedY: Math.random() > 0.5 ? randNum(4, 10) : randNum(-4, -10),
|
||||||
});
|
});
|
||||||
|
|
||||||
const intersect = (c1: Amogus, c2: Amogus): boolean =>
|
const intersect = (c1: Amogus, c2: Amogus): boolean =>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
.container {
|
.container {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: ;
|
align-items: stretch;
|
||||||
padding: 0 10px 20px 10px;
|
padding: 0 10px 20px 10px;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
border-top: 2px solid white;
|
border-top: 2px solid white;
|
||||||
@@ -13,10 +13,19 @@
|
|||||||
.departureLists {
|
.departureLists {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
width: 600px;
|
justify-content: space-between;
|
||||||
|
min-width: 300px;
|
||||||
|
padding-top: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.heading {
|
.heading {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
padding-left: 30px;
|
padding-left: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.departureTable {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
padding-left: 80px;
|
||||||
|
padding-right: 80px;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user