Views in frontend changed
Run Tests on Branches / Backend Tests (push) Successful in 3m28s
Run Tests on Branches / Frontend Tests (push) Successful in 3m26s

This commit is contained in:
Antoni Nuñez Romeu
2026-07-01 17:08:15 +02:00
parent c5df0ec0b2
commit 71a34293a9
3 changed files with 169 additions and 184 deletions
-5
View File
@@ -11,13 +11,8 @@
flex: 1;
overflow-y: auto;
overscroll-behavior: contain;
}
@media (max-width: 768px) {
.app-content {
padding-bottom: calc(6rem + env(safe-area-inset-bottom));
}
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(14px); }
+4 -8
View File
@@ -1,16 +1,13 @@
.bottom-nav {
display: none;
}
@media (max-width: 768px) {
.bottom-nav {
display: flex;
justify-content: space-around;
align-items: flex-end;
position: fixed;
left: 0;
right: 0;
left: 50%;
transform: translateX(-50%);
bottom: 0;
width: 100%;
max-width: 48rem;
z-index: 50;
padding: 0.25rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
background: var(--surface-container-lowest);
@@ -120,4 +117,3 @@
.nav-elevated.active .nav-label {
color: var(--tertiary);
}
}
-6
View File
@@ -1,8 +1,3 @@
.top-bar {
display: none;
}
@media (max-width: 768px) {
.top-bar {
display: block;
position: sticky;
@@ -60,4 +55,3 @@
display: flex;
align-items: center;
}
}