fix clan badge ( primary_guild), add timezone api, move robots to public/custom support, move to atums/echo for logging instead
All checks were successful
Code quality checks / biome (push) Successful in 9s

This commit is contained in:
creations 2025-05-30 19:11:29 -04:00
parent eb2bec6649
commit 3cb3b76a2b
Signed by: creations
GPG key ID: 8F553AA4320FC711
13 changed files with 269 additions and 123 deletions

View file

@ -995,3 +995,37 @@ ul {
height: 16px;
}
}
/* timezone display */
.timezone-wrapper {
position: fixed;
top: 1rem;
right: 1rem;
background-color: var(--card-bg);
color: var(--text-color);
font-size: 0.9rem;
padding: 0.4rem 0.8rem;
border-radius: 6px;
border: 1px solid var(--border-color);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
z-index: 100;
user-select: none;
opacity: 0.85;
transition: opacity 0.2s ease;
}
.timezone-wrapper:hover {
opacity: 1;
}
.timezone-label {
color: var(--text-muted);
margin-right: 0.4rem;
}
@media (max-width: 600px) {
.timezone-label {
display: none;
}
}