mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-18 06:39:48 +00:00
moved project to docker
This commit is contained in:
parent
5aa2463064
commit
d2d48ca39c
20 changed files with 570 additions and 319 deletions
|
@ -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);
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue