diff --git a/fedireads/static/format.css b/fedireads/static/format.css index a001432cc..951ef38e6 100644 --- a/fedireads/static/format.css +++ b/fedireads/static/format.css @@ -94,3 +94,10 @@ form label { width: 30rem; height: 10rem; } +.review { + margin-bottom: 1rem; +} + +small { + display: block; +} diff --git a/fedireads/templates/book.html b/fedireads/templates/book.html index ebd5d57b9..073bfadbe 100644 --- a/fedireads/templates/book.html +++ b/fedireads/templates/book.html @@ -32,8 +32,12 @@

No reviews yet!

{% endif %} {% for review in reviews %} -

{{ review.name }}{{ review.rating }} stars, by {{ review.user.username }}

-

{{ review.review_content }}

+
+

{{ review.name }} + {{ review.rating }} stars, by {{ review.user.username }} +

+
{{ review.review_content }}
+
{% endfor %}