You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The height of the entire tab section is dependent upon the largest tab content, which can leave a lot of white space.
Example
You can see this in the example from the pkgdown website.
Possible work around
I suspect this could be due to bootstrap itself, and I can work around it by forcing the CSS displays to another option.
/* Correct flex boxes from sizing based upon the largest in tabset*/
.tab-content>.tab-pane {
display: none;
}
.tab-content>.active {
display: block;
}
The text was updated successfully, but these errors were encountered:
The issue:
The height of the entire tab section is dependent upon the largest tab content, which can leave a lot of white space.
Example
You can see this in the example from the pkgdown website.
Possible work around
I suspect this could be due to bootstrap itself, and I can work around it by forcing the CSS displays to another option.
The text was updated successfully, but these errors were encountered: