rename list components

This commit is contained in:
jeffvli
2025-09-29 17:42:57 -07:00
parent 4caad27d32
commit 9dc338adcb
6 changed files with 13 additions and 16 deletions
@@ -0,0 +1,46 @@
.item-grid-container {
display: flex;
flex-direction: column !important;
width: 100%;
height: 100%;
padding: 0 var(--theme-spacing-md);
}
.auto-sizer {
width: 100% !important;
height: 100% !important;
}
.list-container {
display: flex;
width: 100%;
height: 100%;
}
.grid-list-container {
width: 100%;
padding: 0 var(--theme-spacing-md);
}
.item-list {
display: flex;
}
.item-row {
flex: 1 1 calc(100% / var(--columns));
width: 100%;
max-width: calc(100% / var(--columns));
height: 100%;
padding: var(--theme-spacing-sm);
overflow: hidden;
}
.full-width-content {
grid-column: 1 / -1;
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 10%);
}
.list-expanded-container {
width: 100%;
height: 100%;
}