Files
ironclaw/docs/style.css
Josh Ford 6c680257e4 docs: move changelog to a navbar tab and tighten its intro (#7859)
* docs: move changelog to a navbar tab and tighten its intro

Replace the bottom "Releases" sidebar group with Docs / Changelog navbar
tabs (with icons), aligned to the content area's left edge via a CSS
override of the almond theme's right-side tab placement. Rewrite the
changelog intro into three single-idea sentences.

Co-Authored-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XTZsoEbLEd6rPKmKqbYsU5

* docs: anchor navbar tabs at the documented 272px content edge

Co-Authored-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XTZsoEbLEd6rPKmKqbYsU5

* docs: shorten navbar tab CSS comment

Co-Authored-By: Claude Fable 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01XTZsoEbLEd6rPKmKqbYsU5

---------

Co-authored-by: Claude Fable 5 <[email protected]>
2026-08-26 15:26:46 +00:00

15 lines
324 B
CSS

code {
max-height: 300px;
overflow: scroll;
}
/* Move the navbar tabs from the theme's right side to the content edge
(fixed 256px sidebar + 16px gutter = 272px). */
@media (min-width: 1024px) {
#navbar .nav-tabs {
position: fixed;
left: 272px;
top: 0;
height: 3.5rem;
}
}