RC-57 | Gear | Setup

This commit is contained in:
Oliver-Akins 2025-01-02 00:09:06 -07:00
parent ff47b97cb9
commit 40ec3b125b
4 changed files with 79 additions and 20 deletions

View file

@ -31,7 +31,7 @@
font-weight: bold;
}
.skill-list-header {
.list-header {
display: flex;
justify-content: space-between;
align-items: center;
@ -78,4 +78,16 @@
grid-column: 2 / span 1;
grid-row: 7 / span 4;
}
.gear-list {
grid-row: span 12;
display: grid;
grid-template-rows: subgrid;
list-style-type: none;
> :nth-child(even) {
background: var(--alt-row-background);
color: var(--alt-row-text);
}
}
}