17 lines
362 B
CSS
17 lines
362 B
CSS
.gallery-images {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
row-gap: var(--space-xs-s);
|
|
column-gap: var(--space-m-l);
|
|
.gallery-image-container {
|
|
width: var(--space-7xl-8xl);
|
|
height: var(--space-7xl-8xl);
|
|
.gallery-image {
|
|
border-radius: var(--border-radius);
|
|
width: var(--space-7xl-8xl);
|
|
height: var(--space-7xl-8xl);
|
|
object-fit: cover;
|
|
}
|
|
}
|
|
}
|