jonkeane commented on code in PR #49332:
URL: https://github.com/apache/arrow/pull/49332#discussion_r2844085045
##########
r/_pkgdown.yml:
##########
@@ -363,6 +363,8 @@ repo:
footer:
structure:
left: older_versions
- right: built_with
+ right: [built_with, legal]
components:
older_versions: "[Older versions of these
docs](https://arrow.apache.org/docs/r/versions.html)"
+ legal: |
+ <small>Apache Arrow, Arrow, Apache, the Apache logo, and the Apache
Arrow project logo are either registered trademarks or trademarks of The Apache
Software Foundation in the United States and other countries.</small>
Review Comment:
Maybe we could warp this in `<div class="pkgdown-footer-notice">...</div>`
and then do something like this in css:
```
footer {
display: flex;
flex-wrap: wrap;
}
.pkgdown-footer-left {
flex: 1;
}
.pkgdown-footer-right {
flex: 1;
text-align: right;
}
.pkgdown-footer-notice {
order: -1; /* moves it visually above the other two */
flex-basis: 100%; /* forces it onto its own row */
text-align: center;
margin-bottom: 0.5em;
}
```
?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]