Ranking: Display players gear

This commit is contained in:
kittentm 2026-03-22 16:25:49 +01:00
commit bd7c49a65d
No known key found for this signature in database
GPG key ID: AC43DFDBC1F44A91
2 changed files with 79 additions and 6 deletions

View file

@ -270,10 +270,46 @@ body {
left: 510px;
top: 95px;
display: flex;
align-items: flex-end;
gap: 12px;
z-index: 3;
}
.gear-wrapper {
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.gear-wrapper.main {
width: 130px;
height: 112px;
}
.gear-wrapper.sub {
width: 84px;
height: 73px;
}
.gear-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
object-fit: contain;
}
.gear-icon {
position: relative;
z-index: 2;
width: 85%;
height: 85%;
object-fit: contain;
}
.gear-main { width: 130px; height: 112px; }
.gear-sub { width: 84px; height: 73px; }