Skip to content

Commit

Permalink
docs(python): add empty lines between methods (#1041)
Browse files Browse the repository at this point in the history
  • Loading branch information
busunkim96 authored Apr 14, 2021
1 parent 89a8b2e commit 721339a
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion synthtool/gcp/templates/python_library/docs/_static/custom.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
div#python2-eol {
border-color: red;
border-width: medium;
}
}

/* Ensure minimum width for 'Parameters' / 'Returns' column */
dl.field-list > dt {
min-width: 100px
}

/* Insert space between methods for readability */
dl.method {
padding-top: 10px;
padding-bottom: 10px
}

/* Insert empty space between classes */
dl.class {
padding-bottom: 50px
}

0 comments on commit 721339a

Please sign in to comment.