From 0787ba5b47de15ed8492744025686b914fd72030 Mon Sep 17 00:00:00 2001 From: Jackkv Date: Sat, 7 Feb 2026 23:09:04 +0100 Subject: [PATCH 1/2] added comment in .css to note changes made with pr #13 --- docs/stylesheets/extra.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index ba36c3f..11fd55b 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -136,6 +136,8 @@ color: var(--nd-gold); } + +/* Toc right side panel PR #13 */ .md-nav--secondary .md-nav__link { font-size: 0.7rem; } From 351f2f90c25842cb078eeab200fb03d27cc845b6 Mon Sep 17 00:00:00 2001 From: Jackkv Date: Sat, 7 Feb 2026 23:15:45 +0100 Subject: [PATCH 2/2] added vertical alignment only for tables that use text align center --- docs/stylesheets/extra.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 11fd55b..dd94ac4 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -171,6 +171,11 @@ border-bottom: 1px solid var(--nd-border); } +/* Table vertical alignment PR #14 */ +.md-typeset table:not([class]) th[style*="text-align: center"], .md-typeset table:not([class]) td[style*="text-align: center"] { + vertical-align: middle; +} + /* Cards and content boxes */ .md-typeset .admonition { margin: 1.5rem 0;