WIP minus unfinished split grid layouts

This commit is contained in:
Robin Townsend
2023-01-18 10:52:12 -05:00
parent 9437a00997
commit d3fba7fd5f
6 changed files with 156 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
.grid {
position: relative;
flex-grow: 1;
padding: 0 22px;
overflow-y: scroll;
}
.slotGrid {
position: relative;
display: grid;
grid-auto-rows: 183px;
column-gap: 18px;
row-gap: 21px;
}
.slot {
background-color: red;
}