Gallery redesign - Fixing the overflow of cta's in the layout on smaller screen on Gallery item page (#21405)

* adding flex-wrap to avoid overlapping of the buttons

* renaming classes to avoid modifying col-md-12 properties

GitOrigin-RevId: d000bd3c0b5be15f526ccbd1699cfe5679c0ddec
This commit is contained in:
Davinder Singh 2024-10-28 10:01:51 +00:00 committed by Copybot
parent c9ed5f6a79
commit 61e18e7266

View file

@ -347,13 +347,14 @@
@include heading-xs;
}
.cta-links {
.cta-links-container {
margin: var(--spacing-09) 0;
.col-md-12 {
.cta-links {
display: inline-flex;
gap: var(--spacing-04);
padding: unset;
flex-wrap: wrap;
}
}