several user QoL styling improvements, incl. footer icon .active color painting

This commit is contained in:
Disco DeDisco
2026-03-09 22:42:30 -04:00
parent 382dd5958f
commit 645b265c80
7 changed files with 60 additions and 10 deletions

View File

@@ -45,16 +45,51 @@ body.page-gameboard {
#id_applet_game_kit {
display: flex;
flex-direction: column;
overflow: visible;
#id_game_kit {
flex: 1;
display: flex;
flex-direction: row;
align-items: center;
gap: 0.75rem;
overflow-x: auto;
justify-content: space-evenly;
overflow-x: visible;
scrollbar-width: none;
&::-webkit-scrollbar { display: none; }
.token-tooltip {
z-index: 1000;
}
.token,
.kit-item {
font-size: 1.5rem;
}
.kit-item {
opacity: 0.6;
}
}
}
}
#id_applet_new_game,
#id_applet_my_games {
display: flex;
flex-direction: column;
ul {
flex: 1;
list-style: none;
padding: 0;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
small {
opacity: 0.5;
font-style: italic;
}
}
}