This commit is contained in:
Roman Pyrih
2025-09-09 13:12:36 +02:00
parent 8d41f03f38
commit 232bc86866
5 changed files with 86 additions and 2 deletions

View File

@@ -1049,6 +1049,43 @@ body.page-id-23 {
}
}
}
.tile-img {
grid-column-start: 1;
grid-column-end: 4;
display: flex;
flex-direction: row;
align-items: center;
gap: 67px;
.tile-col-1 {
width: 100%;
max-width: 578px;
}
.tile-col-2 {
width: 100%;
max-width: 635px;
img {
display: block;
width: 100%;
max-width: unset;
height: 100%;
border-radius: 10px;
object-fit: cover;
margin: 0;
}
}
@include respond-below(lg) {
grid-column-end: 3;
}
@include respond-below(sm) {
flex-direction: column-reverse;
row-gap: 24px;
}
}
}
}
}