Follower UI

This commit is contained in:
Tim Zöller 2025-12-03 23:05:37 +01:00
parent 301364b8a7
commit 8545a3f43b
5 changed files with 339 additions and 8 deletions

View file

@ -199,6 +199,17 @@ body {
padding: 1rem;
}
.stat-card-hover {
transition: background-color 0.2s, transform 0.2s;
cursor: pointer;
border-radius: var(--border-radius);
}
.stat-card-hover:hover {
background-color: var(--light-color);
transform: translateY(-2px);
}
.stat-value {
font-size: 2rem;
font-weight: 700;