Merge pull request #3 from EvilDrPurple/recognize-whitespace

Recognize whitespace
This commit is contained in:
Kylie 2021-07-31 13:19:49 -04:00 committed by GitHub
commit cdbb911b46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 2 deletions

View file

@ -72,6 +72,10 @@ body {
flex-grow: 1;
}
.preserve-whitespace p {
white-space: pre-wrap !important;
}
/** Shelving
******************************************************************************/

View file

@ -18,7 +18,7 @@
</div>
</div>
<div>
<div class="preserve-whitespace">
{% if user.summary %}
{{ user.summary|to_markdown|safe|truncatechars_html:40 }}
{% else %}&nbsp;{% endif %}

View file

@ -28,7 +28,7 @@
</div>
{% if user.summary %}
<div class="column box has-background-white-bis content">
<div class="column box has-background-white-bis content preserve-whitespace">
{{ user.summary|to_markdown|safe }}
</div>
{% endif %}