RC-78 | Weapons | Fix Table Row Alignments

This commit is contained in:
Oliver-Akins 2025-01-06 18:12:01 -07:00
parent 3ba588a3c1
commit 08aab4c6ab
2 changed files with 11 additions and 3 deletions

View file

@ -90,7 +90,7 @@
grid-row: 7 / span 5;
display: grid;
grid-template-columns: subgrid;
grid-auto-rows: min-content;
grid-template-rows: subgrid;
overflow-y: auto;
thead,
@ -121,7 +121,10 @@
label, .label {
width: 100%;
text-align: center;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
}

View file

@ -7,7 +7,6 @@
> li {
margin: 0;
padding: 2px 4px;
display: flex;
flex-direction: row;
gap: 8px;
@ -31,4 +30,10 @@
right: 4px;
}
}
ul {
> li {
margin: 0;
}
}
}