Skip to content

Commit

Permalink
Merge pull request #15 from markszulc/featureblock
Browse files Browse the repository at this point in the history
Featureblock
  • Loading branch information
markszulc authored Nov 19, 2023
2 parents e4a2d3f + b0ac31e commit 24087f1
Showing 1 changed file with 17 additions and 3 deletions.
20 changes: 17 additions & 3 deletions blocks/footer/footer.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,16 @@ footer {
}

footer .footer {
max-width: 1280px;
max-width: 600px;
margin: auto;
}

@media (min-width: 900px) {
footer .footer {
max-width: 1280px;
margin: auto;
}
}


footer .footer h3 {
Expand All @@ -29,10 +35,18 @@ footer .columns ul {

footer .columns > div {
display: flex;
flex-direction: row;
flex-direction: column;
justify-content: flex-start;
gap: 160px;
gap: 0px;
}

@media (min-width: 900px) {
footer .columns > div {
flex-direction: row;
gap: 160px;
}
}

footer .footer p:nth-child(5) {
margin: 0;
font-size: 12px;
Expand Down

0 comments on commit 24087f1

Please sign in to comment.