Skip to content

Commit

Permalink
Made footer responsive (#347)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnukratiMehta authored Feb 21, 2024
1 parent 5af1f56 commit 842f0ec
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions website/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -438,3 +438,22 @@ nav.breadcrumbs li:last-of-type::after {
background-color: var(--black);
}
}

@media screen and (width <= 786px) {
footer {
display: flex;
justify-content: center;
flex-wrap: wrap;
padding: 1rem;
gap: 1rem;
}

footer span {
padding-left: 0;
text-align: center;
}

footer li:last-child::after {
content: none;
}
}

0 comments on commit 842f0ec

Please sign in to comment.