24 lines
420 B
CSS
24 lines
420 B
CSS
.container {
|
|
margin: 0 auto;
|
|
max-width: var(--max-width-page);
|
|
}
|
|
|
|
.filterContainer {
|
|
height: 38px;
|
|
}
|
|
|
|
.skeletonContainer {
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
/* used to hide overflowing rows */
|
|
grid-template-rows: auto;
|
|
grid-auto-rows: 0;
|
|
overflow: hidden;
|
|
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
margin-top: 20px;
|
|
gap: var(--Spacing-x2);
|
|
}
|