From f15b57ccfd71106c2299e9b89835fe6e55015662 Mon Sep 17 00:00:00 2001 From: Bu Sun Kim <8822365+busunkim96@users.noreply.github.com> Date: Thu, 7 Jan 2021 11:58:32 -0700 Subject: [PATCH] chore(python): fix column sizing issue in docs (#884) --- .../gcp/templates/python_library/docs/_static/custom.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/synthtool/gcp/templates/python_library/docs/_static/custom.css b/synthtool/gcp/templates/python_library/docs/_static/custom.css index 0abaf229f..bcd37bbd3 100644 --- a/synthtool/gcp/templates/python_library/docs/_static/custom.css +++ b/synthtool/gcp/templates/python_library/docs/_static/custom.css @@ -1,4 +1,9 @@ div#python2-eol { border-color: red; border-width: medium; -} \ No newline at end of file +} + +/* Ensure minimum width for 'Parameters' / 'Returns' column */ +dl.field-list > dt { + min-width: 100px +}