add rain and snow kv options fix issue with activity header not showing when no initial activity

This commit is contained in:
creations 2025-04-09 18:23:52 -04:00
parent 66744ddd10
commit 78c2eb4545
Signed by: creations
GPG key ID: 8F553AA4320FC711
7 changed files with 319 additions and 133 deletions

View file

@ -40,6 +40,30 @@ body {
align-items: center;
}
.snowflake {
position: absolute;
background-color: white;
border-radius: 50%;
pointer-events: none;
z-index: 1;
}
.raindrop {
position: absolute;
background-color: white;
border-radius: 50%;
pointer-events: none;
z-index: 1;
}
.hidden {
display: none;
}
.activity-header.hidden {
display: none;
}
.user-card {
display: flex;
flex-direction: column;