Files
FarmaFinder/frontend/src/App.css
T
Antoni Nuñez Romeu 71a34293a9
Run Tests on Branches / Backend Tests (push) Successful in 3m28s
Run Tests on Branches / Frontend Tests (push) Successful in 3m26s
Views in frontend changed
2026-07-01 17:08:15 +02:00

25 lines
450 B
CSS

.app {
height: 100dvh;
max-width: 48rem;
margin: 0 auto;
display: flex;
flex-direction: column;
overflow: hidden;
}
.app-content {
flex: 1;
overflow-y: auto;
overscroll-behavior: contain;
padding-bottom: calc(6rem + env(safe-area-inset-bottom));
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(14px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
to { transform: rotate(360deg); }
}