Skip to content

Commit

Permalink
Update section-metadata.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruchika4 authored Jun 4, 2024
1 parent fe0adb4 commit 49c6338
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libs/blocks/section-metadata/section-metadata.css
Original file line number Diff line number Diff line change
Expand Up @@ -297,20 +297,20 @@ main > .section[class*='-up'] > .content {
}

@media screen and (min-width: 1200px) {
.section.two-up {
grid-template-columns: repeat(2, 1fr);
.section.two-up {
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 49c6338

Please sign in to comment.