feat: update water level datasets and improve Tooltip component responsiveness

This commit is contained in:
David Fencl
2026-06-08 21:30:34 +02:00
parent cdb653d660
commit 8fe39b7ab0
65 changed files with 1110 additions and 205 deletions
+22
View File
@@ -6,6 +6,28 @@
background-color: var(--bg-dark);
}
.app-footer {
display: flex;
justifyContent: space-between;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
padding: 1.5rem;
font-size: 0.8rem;
color: var(--text-muted);
margin-top: auto;
}
@media (max-width: 768px) {
.app-footer {
justify-content: center;
flex-direction: column;
text-align: center;
gap: 0.75rem;
padding: 1rem;
}
}
.sidebar {
width: 190px;
background-color: var(--bg-card);