diff --git a/bookwyrm/templates/book.html b/bookwyrm/templates/book.html index c4cede2ed..06578e894 100644 --- a/bookwyrm/templates/book.html +++ b/bookwyrm/templates/book.html @@ -254,8 +254,8 @@ <div> {% include 'snippets/username.html' with user=rating.user %} </div> - <div class="field is-grouped mb-0"> - <div>{% trans "rated it" %}</div> + <div class="is-flex"> + <p class="mr-1">{% trans "rated it" %}</p> {% include 'snippets/stars.html' with rating=rating.rating %} </div> <div> diff --git a/bookwyrm/templates/layout.html b/bookwyrm/templates/layout.html index ee42b4f6e..8a708f633 100644 --- a/bookwyrm/templates/layout.html +++ b/bookwyrm/templates/layout.html @@ -79,7 +79,7 @@ aria-controls="navbar-dropdown" > {% include 'snippets/avatar.html' with user=request.user %} - {% include 'snippets/username.html' with user=request.user anchor=false %} + <span class="ml-2">{% include 'snippets/username.html' with user=request.user anchor=false %}</span> </a> <ul class="navbar-dropdown" id="navbar-dropdown"> <li> diff --git a/bookwyrm/templates/snippets/username.html b/bookwyrm/templates/snippets/username.html index b004582d5..561553dbb 100644 --- a/bookwyrm/templates/snippets/username.html +++ b/bookwyrm/templates/snippets/username.html @@ -1,9 +1,7 @@ {% spaceless %} {% load bookwyrm_tags %} -<{% if anchor %}a href="{{ user.local_path }}"{% else %}span{% endif %} - class="user ml-1" -> +<{% if anchor %}a href="{{ user.local_path }}"{% else %}span{% endif %}> {{ user.display_name }} </a>