Allow UI to delete sessions

This commit is contained in:
2024-09-07 22:26:38 -05:00
parent 0eb75994c9
commit 6b5bb96de7
11 changed files with 162 additions and 21 deletions

View File

@@ -1,5 +1,18 @@
row {
display: grid;
grid-template-columns: 18rem 5rem;
padding-left: 5px; /* Matches box shadow on hover */
.GameBrowser {
}
.GameBrowser row {
display: block;
width: max-content;
}
.GameBrowser row.header {
display: grid;
grid-template-columns: 18rem 5rem 5rem;
gap: 1rem;
margin-bottom: 0 !important;
}
.GameBrowser row:not(:last-of-type) {
margin-bottom: 1rem;
}