update: character

This commit is contained in:
Vick Scarlet
2026-08-14 21:00:59 +08:00
parent b8d250906a
commit 10debc6515
22 changed files with 495 additions and 101 deletions
+20
View File
@@ -32,4 +32,24 @@
user-select: none;
}
}
> .controls {
display: flex;
flex-direction: row;
justify-content: center;
gap: 0.5rem;
width: 100%;
> button { flex: 1 0; }
}
}
.saving {
position: fixed;
bottom: 0;
left: 0;
opacity: 0;
user-select: none;
transition: opacity 0.3s;
&.active {
opacity: 1;
transition: opacity 0.1s;
}
}