Shifts alignment on oclc number with line wrap
This commit is contained in:
parent
64eb6e8b07
commit
bb1e8edc00
|
@ -56,21 +56,21 @@
|
||||||
<section class="content">
|
<section class="content">
|
||||||
<dl>
|
<dl>
|
||||||
{% if book.isbn_13 %}
|
{% if book.isbn_13 %}
|
||||||
<div class="is-flex is-justify-content-space-between">
|
<div class="is-flex is-justify-content-space-between is-align-items-center">
|
||||||
<dt>{% trans "ISBN:" %}</dt>
|
<dt>{% trans "ISBN:" %}</dt>
|
||||||
<dd>{{ book.isbn_13 }}</dd>
|
<dd>{{ book.isbn_13 }}</dd>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if book.oclc_number %}
|
{% if book.oclc_number %}
|
||||||
<div class="is-flex is-justify-content-space-between">
|
<div class="is-flex is-justify-content-space-between is-align-items-center">
|
||||||
<dt>{% trans "OCLC Number:" %}</dt>
|
<dt>{% trans "OCLC Number:" %}</dt>
|
||||||
<dd>{{ book.oclc_number }}</dd>
|
<dd>{{ book.oclc_number }}</dd>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if book.asin %}
|
{% if book.asin %}
|
||||||
<div class="is-flex is-justify-content-space-between">
|
<div class="is-flex is-justify-content-space-between is-align-items-center">
|
||||||
<dt>{% trans "ASIN:" %}</dt>
|
<dt>{% trans "ASIN:" %}</dt>
|
||||||
<dd>{{ book.asin }}</dd>
|
<dd>{{ book.asin }}</dd>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue