jsduck
jsduck copied to clipboard
Columns in API index page are too inflexible
Long class names in one column will overlap with the ones in next column. Even when there is enough space for the columns to be wider.
Maybe the we could also allow the classnames to wrap when they really don't fit.
Adding the following to your config allows the columns to be wider if needed.
"--css": [
".class-categories .section div {min-width: 250px; width: auto !important;}"
]
Following on from @moghammed's suggestion I added a margin-right property to his workaround.
"--css": [
".class-categories .section div {min-width: 250px; margin-right: 35px; width: auto !important;}"
]