add: mode & character page

This commit is contained in:
Vick Scarlet
2026-08-13 16:43:29 +08:00
parent 4be851a591
commit 9c8478c102
7 changed files with 94 additions and 8 deletions
+23
View File
@@ -0,0 +1,23 @@
.screen.mode {
gap: 1rem;
button {
display: flex;
flex-direction: column;
height: 10rem;
gap: 0.5rem;
.name {
font-size: 3.5rem;
font-weight: bold;
}
.description {
display: flex;
flex-direction: row;
gap: 1rem;
span {
font-size: 1rem;
&::before { content: '['; }
&::after { content: ']'; }
}
}
}
}