From 7b4078049c737b8b01e395541d881cf062cc9d40 Mon Sep 17 00:00:00 2001 From: luandro Date: Fri, 3 Oct 2025 22:22:43 +0700 Subject: [PATCH] fix(css): change table cell vertical alignment from middle to top - Tables now use top vertical alignment for better readability - Applies to all table cells (td and th) in markdown content - Fixes issue where varying cell content heights made tables hard to scan Fixes #33 --- src/css/custom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/css/custom.css b/src/css/custom.css index 2f2c6197..e130bb84 100644 --- a/src/css/custom.css +++ b/src/css/custom.css @@ -197,3 +197,12 @@ div[class*="admonition"][class*="danger"] svg { div[class*="admonition"][class*="caution"] svg { fill: #f97316 !important; } + +/* + * Table styling improvements + * Issue #33: Fix vertical alignment from middle to top for better readability + */ +.theme-doc-markdown table td, +.theme-doc-markdown table th { + vertical-align: top; +}