mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #16330 from jlmitch5/patch-1
Fix table width on docsite
This commit is contained in:
commit
f4724e55d3
1 changed files with 11 additions and 1 deletions
|
@ -4738,7 +4738,17 @@ span[id*='MathJax-Span'] {
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
word-break: break-all;
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
th, td {
|
||||||
|
min-width: 100px;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
overflow-x: scroll;
|
||||||
|
display: block;
|
||||||
|
max-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media print {
|
@media print {
|
||||||
|
|
Loading…
Reference in a new issue