feat: add sprite spawns

This commit is contained in:
insects 2025-03-13 14:36:23 +01:00
parent 0581c53454
commit ca352fc531
13 changed files with 379 additions and 13 deletions

View file

@ -336,3 +336,58 @@ a:has(button) {
justify-content: space-between;
gap: 5px;
}
.sprite-list {
display: flex;
align-self: start;
flex-direction: column;
}
.sprite {
display: flex;
gap: 5px;
margin-bottom: 5px;
align-items: center;
}
.sprite-name {
background-color: #3D9970;
color: #fff;
padding: 2px 4px;
}
.sprite .spawning {
color: #3D9970;
}
.sprite .not-spawning {
color: #b5443a;
}
.sprite-levels {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 5px;
}
.sprite-map {
margin-bottom: 10px;
margin-top: 5px;
}
.sprite-map summary {
font-size: 12px;
}
.sprite-levels > div {
background-color: #111;
color: #fff;
font-family: monospace;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
text-transform: uppercase;
font-weight: bold;
padding: 3px 5px;
}