mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-05-06 15:24:17 +00:00
28 lines
578 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|