Allow content to resize a bit. See commit description

With this change, the default size of content in the new text format
is increased a bit, but the content will also increase in size to try
and fit all its lines properly. This is especially useful with stuff
like guitar tab which looks terrible if it's wrapped
This commit is contained in:
Yamboy1 2020-01-18 20:33:12 +13:00 committed by Sean Yesmunt
parent da58818198
commit 1a029dcfad

View file

@ -102,7 +102,10 @@
}
.main__document-wrapper {
width: 40em;
max-width: 100%;
min-width: 80%;
/* margin: auto needs a set width */
width: 0;
margin: auto;
margin-bottom: var(--spacing-xlarge);