Drop trainvel backend, this is now a frontend-only app

This commit is contained in:
2024-11-10 16:34:18 +01:00
parent bc23d63c43
commit 036e1604bd
84 changed files with 22 additions and 7984 deletions

19
src/App.css Normal file
View File

@ -0,0 +1,19 @@
.shrink-enter {
transform: translateY(100%);
opacity: 0;
}
.shrink-enter-active {
transform: translateY(0);
opacity: 1;
transition: transform 500ms ease-out, opacity 500ms ease-out;
}
.shrink-exit {
transform: translateY(0);
height: 100%;
opacity: 1;
}
.shrink-exit-active {
transform: translateY(-100%);
opacity: 0;
transition: transform 500ms ease-in, opacity 500ms ease-in;
}