Skip to content

Commit

Permalink
alignments with testimonial overlap size
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatan-lledo-netcentric committed Feb 8, 2024
1 parent 85bed9f commit ec6f1d1
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions blocks/v2-accordion-column/v2-accordion-column.css
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@
}

.v2-accordion-column__items-container {
width: 40%;
display: flex;
flex-direction: column;
align-items: flex-start;
Expand All @@ -172,7 +171,7 @@
position: absolute;
left: 0;
top: 6em;
width: 50%;
width: calc(50% + 80px);
background-color: var(--c-primary-gray);
}

Expand All @@ -185,7 +184,11 @@
justify-content: start;
}

.v2-accordion-column--left .v2-accordion-column__items-container {
width: 40%;
}

.v2-accordion-column--left .v2-accordion-column__item-image {
left: 50%;
left: calc(50% - 80px);
}
}

0 comments on commit ec6f1d1

Please sign in to comment.