Skip to content
This repository was archived by the owner on Apr 6, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,6 @@ div.md-img img {
margin-bottom: 0;
}

/* Nextra logic for removing footer isn't working right now */
footer {
display: none;
}

/* Make shasums actually legible */
span.shasum {
Expand Down
26 changes: 25 additions & 1 deletion theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,32 @@ const config: DocsThemeConfig = {
},
docsRepositoryBase: "https://github.com/ethereum-optimism/docs/blob/main/",
footer: {
text: "OP Documentation",
text: (
<div
style={{
display: "flex",
justifyContent: "flex-end",
alignItems: "center",
padding: "0 1rem",
fontSize: ".7rem",
marginTop: "0",
width: "100%",
boxSizing: "border-box",
lineHeight: "1",
gap: "1rem",
textDecoration: "none",
}}
>
<a href="https://optimism.io/terms">Terms of Service</a>
<a href="https://optimism.io/community-agreement">Community Agreement</a>
<a href="https://optimism.io/data-privacy-policy">Privacy Policy</a>
</div>
),
Comment thread
sbvegan marked this conversation as resolved.
Outdated
},




sidebar: {
defaultMenuCollapseLevel: 1,
autoCollapse: true,
Expand Down