quick commit
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(3, 10) : randNum(-3, -10),
|
||||
speedY: Math.random() > 0.5 ? randNum(3, 10) : randNum(-3, -10),
|
||||
speedX: Math.random() > 0.5 ? randNum(1, 2) : randNum(-1, -2),
|
||||
speedY: Math.random() > 0.5 ? randNum(1, 2) : randNum(-1, -2),
|
||||
});
|
||||
|
||||
const intersect = (c1: Amogus, c2: Amogus): boolean =>
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
.container {
|
||||
z-index: 100;
|
||||
position: absolute;
|
||||
scale: 50%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
object-fit: contain;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -65,7 +65,6 @@ export default function Dashboard() {
|
||||
|
||||
return (
|
||||
<div className={`${style.dashboard} ${scheme}`}>
|
||||
<Amogus />
|
||||
<div className={style.body}>
|
||||
<CardColumn>
|
||||
<Card icon="🚊" name="Timetable">
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
height: 100%;
|
||||
padding: 30px;
|
||||
overflow: scroll;
|
||||
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
/* 7 to 16 */
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
align-items: ;
|
||||
padding: 0 10px 20px 10px;
|
||||
margin-bottom: 20px;
|
||||
border-top: 2px solid white;
|
||||
@@ -13,8 +13,7 @@
|
||||
.departureLists {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-around;
|
||||
width: 100%;
|
||||
width: 600px;
|
||||
}
|
||||
|
||||
.heading {
|
||||
|
||||
@@ -68,7 +68,7 @@ export default function Terminal() {
|
||||
<span>
|
||||
<pre>
|
||||
{" "}NNssussNNN{" "}plants{" "}
|
||||
<span className={style.plants}>4</span>
|
||||
<span className={style.plants}>2</span>
|
||||
</pre>
|
||||
</span>
|
||||
<span>
|
||||
|
||||
Reference in New Issue
Block a user