Skip to content

Commit

Permalink
Fix footer layout on phones
Browse files Browse the repository at this point in the history
  • Loading branch information
flachware committed Sep 15, 2023
1 parent 2845264 commit 968e67d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions assets/stylesheets/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,6 @@ footer {
justify-content: center;
}

.social-nav-container {
display: flex;
}

h2,
a {
padding: ($space-sm / 2) $space-xs;
Expand Down Expand Up @@ -61,6 +57,18 @@ footer {
}
}

.social-nav-container {
display: flex;

h2 {
display: none;

@media (min-width: $sm) {
display: block;
}
}
}

.social-nav {
@media (min-width: $sm) {
padding-right: $space-xs;
Expand Down

0 comments on commit 968e67d

Please sign in to comment.