Skip to content

Commit

Permalink
issue 31 - footer wrap
Browse files Browse the repository at this point in the history
I checked the quarto site and they actually hide the footer below a max width. Instead of dealing with wrap/no wrap, I think it makes sense to also hide the footer if the width of the window is small
  • Loading branch information
AshleyHenry15 committed Nov 27, 2024
1 parent 3b0c84d commit c760cca
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions _extensions/posit-docs/theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,15 @@ body {
/* Footer */

.nav-footer {
font-family: $font-family-monospace;
text-transform: uppercase;
font-size: 14px;

border-top: solid #0000001a 0.01em;
align-items: center !important;

}

@media only screen and (max-width: 1200px) {
.nav-footer {
display: none !important;
}
}

.nav-footer .nav-footer-center {
Expand Down

0 comments on commit c760cca

Please sign in to comment.