fix: constrain item grid to 6-slot width, fix scroll chain

This commit is contained in:
Erik 2026-03-13 20:27:15 +01:00
parent e7879c57fb
commit 66ff5f01fc

View file

@ -726,6 +726,7 @@ body.noselect, body.noselect * {
flex-direction: column;
flex: 1;
min-width: 0;
min-height: 0;
overflow: hidden;
}
@ -940,8 +941,9 @@ body.noselect, body.noselect * {
.inv-item-section {
display: flex;
flex-direction: column;
min-width: 0;
flex: 1;
min-height: 0;
max-width: fit-content;
}
.inv-item-grid {
@ -957,6 +959,8 @@ body.noselect, body.noselect * {
min-height: 0;
align-content: start;
justify-content: start;
box-sizing: content-box;
max-width: fit-content;
}
.inv-mana-panel {