19 lines
296 B
SCSS
19 lines
296 B
SCSS
|
|
@use "../../hippie-style/hippie";
|
||
|
|
|
||
|
|
.gallery {
|
||
|
|
display: flex;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
justify-content: left;
|
||
|
|
align-items: start;
|
||
|
|
gap: 10px;
|
||
|
|
background-color: hippie.$color_back_io;
|
||
|
|
|
||
|
|
& > div {
|
||
|
|
background-color: hotpink;
|
||
|
|
aspect-ratio: 2 / 3;
|
||
|
|
width: 128px;
|
||
|
|
transition: width 0.3s ease;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|