Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/development' into feautre/OP-91/…
Browse files Browse the repository at this point in the history
…headerRefactor
  • Loading branch information
remko48 committed Oct 25, 2023
2 parents 9cac366 + a94eb7f commit a6b4a91
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 a6b4a91

Please sign in to comment.