moved project to docker

This commit is contained in:
Kai Ritthaler 2025-06-30 21:49:51 +02:00
parent 5aa2463064
commit d2d48ca39c
20 changed files with 570 additions and 319 deletions

View file

@ -75,7 +75,6 @@ export const NotFound = () => {
}, []);
useEffect(() => {
let lastBlockTime = Date.now();
let animationId: number;
function loop() {
@ -87,7 +86,7 @@ export const NotFound = () => {
velocityRef.current += GRAVITY;
birdPosRef.current.y += velocityRef.current;
setRotation(Math.max(Math.min(velocityRef.current * 2, 90), -15));
setRotation(Math.max(Math.min(velocityRef.current * 4, 90), -15));
textPosRef.current -= speedRef.current;
setTextPos(textPosRef.current);

View file

@ -58,3 +58,20 @@
}
}
.MuiImageListItem-root {
height: auto !important;
width: auto !important;
}
.MuiImageListItem-img {
height: 5rem !important;
width: 5rem !important;
object-fit: cover !important;
}
@media only screen and (min-width: 768px) {
.MuiImageListItem-img {
height: 15rem !important;
width: 15rem !important;
}
}