22 lines
391 B
SCSS
22 lines
391 B
SCSS
|
@import "./variables";
|
||
|
|
||
|
.photo-list {
|
||
|
align-items: flex-start;
|
||
|
flex-wrap: wrap;
|
||
|
|
||
|
.photo {
|
||
|
box-sizing: border-box;
|
||
|
padding: $pad-small;
|
||
|
width: 33%;
|
||
|
|
||
|
.image {
|
||
|
border: 2px solid $color-main;
|
||
|
border-radius: 0.5em;
|
||
|
overflow: hidden;
|
||
|
|
||
|
img {
|
||
|
max-width: 100%
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|