Finished up with toke command list in admin panel.

This commit is contained in:
rainbow napkin 2024-12-12 19:23:11 -05:00
parent 59fe38a5fe
commit 5fe1620c20
7 changed files with 132 additions and 7 deletions

View file

@ -20,7 +20,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
}
.admin-panel-container-div{
margin: 0 auto;
margin: 0 auto 5em;
max-width: 100%;
}
@ -100,4 +100,33 @@ img.admin-list-entry-item{
#admin-ban-list-entry-expiration-date-title{
width: 11em;
}
#toke-command-list-div{
/*Maybe I suck at CSS but I can't get relative percentage-based heights to play nice here.
Either way sizing this by total viewheight isn't too big a deal. At least here...*/
min-height: 9em;
max-height: 20vh;
}
div.toke-command-list{
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
text-align: center;
padding: 1em;
overflow-y: auto;
}
span.toke-command-list{
display: flex;
}
p.toke-command-list{
white-space: nowrap;
flex: 1;
margin: auto 0;
}
i.toke-command-list{
margin: 0.2em;
}