Skip to content

Commit

Permalink
KAW-8196 Fix text with image stacked overlapping next component
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaszDziezykNetcentric committed Oct 28, 2024
1 parent 42fa669 commit 5f19119
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions blocks/text-with-image/text-with-image.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
display: flex;
flex-direction: column;
gap: 48px;
overflow-x: clip;
}

.text-with-image .column-with-images {
Expand Down Expand Up @@ -72,6 +73,7 @@
transform: translateY(
calc(var(--text-image-2nd-image-height) - var(--text-image-distance))
);
padding-bottom: calc(var(--text-image-2nd-image-height) - var(--text-image-distance));
transition: transform var(--animation-time) linear;
}

Expand Down Expand Up @@ -170,6 +172,7 @@

.text-with-image.stacked-images .column-with-text {
transform: unset;
padding: 0;
}

.text-with-image.stacked-images .column-with-images {
Expand Down

0 comments on commit 5f19119

Please sign in to comment.