Skip to content

Commit

Permalink
Merge pull request #359 from OpenCatalogi/feature/OP-90/review
Browse files Browse the repository at this point in the history
feature/OP-90/review
  • Loading branch information
remko48 authored Oct 24, 2023
2 parents 98b1ba1 + 8232b13 commit a94eb7f
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion pwa/src/templates/templateParts/footer/FooterTemplate.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
.contentGrid {
gap: 28px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-columns: repeat(1, minmax(0, 1fr));
}

.dynamicSectionTitle {
Expand All @@ -83,3 +83,15 @@
.iconRight {
margin-inline-start: var(--web-app-size-2xs);
}

@media only screen and (min-width: 576px) {
.contentGrid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media only screen and (min-width: 992px) {
.contentGrid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}

0 comments on commit a94eb7f

Please sign in to comment.