Apply 100% width to stretch class

Previously, Asciidoctor used spread for a full-width table but this
changed [1] to stretch in 1.5.7. As a result, a table that should be
full-width is not when using spring.css with Asciidoctor 1.5.7+.

This commit updates the CSS to apply 100% width to stretch. This is
done in addition to spread to avoid breaking backwards compatibility.

[1] https://github.com/asciidoctor/asciidoctor/issues/2589
This commit is contained in:
Andy Wilkinson 2019-11-19 17:05:36 +00:00 committed by Brian Clozel
parent 442862e3b3
commit 7391705439
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ object, svg {
margin-right: auto;
}
.spread {
.spread, .stretch {
width: 100%;
}