fix/add tests, update heatmap range, finish android release, add readme

Stop tracking gradle.properties
This commit is contained in:
Rene Kievits
2025-12-24 06:50:04 +01:00
parent eaed23a678
commit c140bb8292
66 changed files with 350 additions and 89 deletions

View File

@@ -23,14 +23,12 @@
box-sizing: border-box;
min-height: 50vh;
// Center the loader when state is loading
&.is-loading {
display: flex;
align-items: center;
justify-content: center;
}
// Trigger animations for all items when data is ready
&.is-ready {
.slide-up-item {
animation: dashboard-pop-in 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
@@ -41,10 +39,8 @@
grid-column: 1 / -1;
}
// Base state for animated items
.slide-up-item {
opacity: 0;
// Use the --delay variable passed from Vue, defaulting to 0ms
animation-delay: var(--delay, 0ms);
will-change: transform, opacity;
}