feat: show message instead of just nothing when data is empty

This commit is contained in:
kittentm 2026-04-01 04:54:59 +02:00
commit f9338265b0
No known key found for this signature in database
GPG key ID: 520EDAA0C8CDE295
2 changed files with 28 additions and 0 deletions

View file

@ -333,4 +333,19 @@ body {
width: calc(100% - var(--sidebar-width));
display: flex;
flex-direction: column;
}
.rank-empty-message {
font-family: "Splatoon1", sans-serif;
color: white;
font-size: 28px;
text-align: center;
line-height: 1.4;
display: flex;
align-items: center;
justify-content: center;
min-height: 150px;
width: 100%;
padding: 40px;
box-sizing: border-box;
}