mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 05:43:11 +00:00
docs: Make tables scrollable on overflow
This makes the *tables* themselves scrollable, not the section div they are in, which means the section doesn't scroll along with them (it's already reflowed).
This commit is contained in:
parent
dd64035d23
commit
fc5f7975a6
1 changed files with 3 additions and 0 deletions
|
@ -177,6 +177,9 @@ table.docutils {
|
|||
border-radius: 3px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
/* Make table scrollable on overflow */
|
||||
display: block;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
table.docutils td, table.docutils th {
|
||||
|
|
Loading…
Reference in a new issue