Files
housesof/src/style/atoms/_photo.scss

29 lines
586 B
SCSS

.photo {
overflow: hidden;
background: $color-primary-tertiary20;
border-radius: 6px;
@include bp (md) {
border-radius: 8px;
}
a {
position: relative;
display: block;
height: 100%;
cursor: zoom-in;
& > picture {
height: 100%;
img {
display: block;
width: calc(100% + 1px);
height: calc(100% + 1px);
object-fit: cover;
pointer-events: none;
user-select: none;
}
}
}
}