This commit is contained in:
Elijah Lucian 2021-03-20 18:59:13 -07:00 committed by Tanner Collin
parent 8a37626106
commit cfe4cb3382
2 changed files with 10 additions and 1 deletions

View File

@ -1,4 +1,4 @@
docker build . -t spaceport-client
docker run -v $PWD:/usr/src/app spaceport-client
docker run -it -p 3000:3000 -v $PWD/src:/usr/src/app/src spaceport-client
# npm install
# npm run start

View File

@ -124,6 +124,15 @@ body {
display: grid;
}
.footer-content {
transition: all 0.2s ease-in;
opacity: 0.25;
}
.footer-content:hover {
opacity: 1;
}
/* grid bottom */
.footer canvas {
grid-row: 1/2;