From fab47788f1fae2b7d716f24e05ccd2525dfb806b Mon Sep 17 00:00:00 2001 From: Clare Macrae Date: Fri, 23 Dec 2022 10:47:14 +0000 Subject: [PATCH] docs: Tables in docs now easier to read, as aligned (#1425) The Quick Reference table, especially, was quite hard to glance over quickly due to the inconsistent vertical alignment. --- docs/_sass/custom/custom.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/_sass/custom/custom.scss b/docs/_sass/custom/custom.scss index 492d17dd43..135d09ed65 100644 --- a/docs/_sass/custom/custom.scss +++ b/docs/_sass/custom/custom.scss @@ -6,3 +6,7 @@ blockquote { padding-left: 15px; border-left: 3px solid #ccc; } + +td { + vertical-align: top; +}