Skip to content

Commit

Permalink
MWPW-151281-Fix overflow causing horizontal scroll (adobecom#2421)
Browse files Browse the repository at this point in the history
* Update section-metadata.css

* fix indentation
  • Loading branch information
Ruchika4 authored and mokimo committed Jun 11, 2024
1 parent 8219d2a commit 4faf094
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions libs/blocks/section-metadata/section-metadata.css
Original file line number Diff line number Diff line change
Expand Up @@ -298,19 +298,19 @@ main > .section[class*='-up'] > .content {

@media screen and (min-width: 1200px) {
.section.two-up {
grid-template-columns: repeat(2, 1fr);
grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section.three-up {
grid-template-columns: repeat(3, 1fr);
grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section.four-up {
grid-template-columns: repeat(4, 1fr);
grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section.five-up {
grid-template-columns: repeat(5, 1fr);
grid-template-columns: repeat(5, minmax(0, 1fr));
}

.section.grid-template-columns-1-2 {
Expand Down

0 comments on commit 4faf094

Please sign in to comment.