13 lines
240 B
SCSS
13 lines
240 B
SCSS
|
.gallery {
|
||
|
display: grid;
|
||
|
grid-gap: 10px;
|
||
|
grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
|
||
|
grid-template-rows: 1fr auto;
|
||
|
overflow-inline: scroll;
|
||
|
|
||
|
&__caption {
|
||
|
grid-column-end: -1;
|
||
|
grid-column-start: 1;
|
||
|
}
|
||
|
}
|