laconic.com/src/components/sections/blog/post-content/content.module.scss
Manuel Garcia Genta a5e0829ed4
Blog page (#15)
2022-04-11 12:18:52 -03:00

28 lines
578 B
SCSS

@import '~/css/helpers';
$img-height: 590px;
$img-height-mobile: 200px;
.section {
transform: translateY(
calc(tovw($img-height, 'default', $img-height-mobile) * -1 / 2)
);
@media screen and (max-width: 800px) {
transform: none;
}
.image__container {
width: 100%;
height: tovw($img-height, 'default', $img-height-mobile);
border-top: tovw(1px, 'default', 1px) solid var(--color-white);
border-bottom: tovw(1px, 'default', 1px) solid var(--color-white);
img {
width: 100%;
height: 100%;
object-fit: cover;
}
}
}