quick timetable style fix
This commit is contained in:
@@ -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 =>
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user