Files
element-call/src/video-grid/NewVideoGrid.module.css
T

33 lines
441 B
CSS
Raw Normal View History

2023-01-18 10:52:12 -05:00
.grid {
contain: strict;
2023-01-18 10:52:12 -05:00
position: relative;
flex-grow: 1;
padding: 0 20px;
overflow-y: auto;
2023-02-03 16:27:49 -05:00
overflow-x: hidden;
2023-01-18 10:52:12 -05:00
}
.slotGrid {
position: relative;
display: grid;
grid-auto-rows: 163px;
gap: 8px;
padding-bottom: var(--footerHeight);
2023-01-18 10:52:12 -05:00
}
2023-01-29 21:56:07 -05:00
.slot {
contain: strict;
2023-01-29 21:56:07 -05:00
}
@media (min-width: 800px) {
.grid {
padding: 0 22px;
}
.slotGrid {
grid-auto-rows: 183px;
column-gap: 18px;
row-gap: 21px;
}
}