forked from 00dani/lemoncurry
Adjust the spacing around entries - don't use .container since it adds extra unwanted margin
This commit is contained in:
parent
b63e2db584
commit
6313664e53
5 changed files with 5 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
||||||
ol.entries
|
ol.entries, div.entry
|
||||||
display flex
|
display flex
|
||||||
margin-bottom 0
|
margin-bottom 0
|
||||||
flex 1
|
flex 1
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<div class="container">
|
<div class="entry">
|
||||||
{% include 'entries/h-entry.html' %}
|
{% include 'entries/h-entry.html' %}
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
|
@ -7,7 +7,7 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block main %}
|
{% block main %}
|
||||||
<ol class="container list-unstyled entries">
|
<ol class="list-unstyled entries">
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
<li>
|
<li>
|
||||||
{% include 'entries/h-entry.html' %}
|
{% include 'entries/h-entry.html' %}
|
||||||
|
|
|
@ -24,3 +24,4 @@ main
|
||||||
margin-bottom 0
|
margin-bottom 0
|
||||||
ol.entries
|
ol.entries
|
||||||
justify-content flex-start
|
justify-content flex-start
|
||||||
|
margin-right 1rem
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
<script class="p-json-ld" type="application/ld+json">{{ user.json_ld | jsonify }}</script>
|
<script class="p-json-ld" type="application/ld+json">{{ user.json_ld | jsonify }}</script>
|
||||||
</article>
|
</article>
|
||||||
</aside>
|
</aside>
|
||||||
<ol class="container list-unstyled entries">
|
<ol class="list-unstyled entries">
|
||||||
{% for entry in entries %}
|
{% for entry in entries %}
|
||||||
<li>
|
<li>
|
||||||
{% include 'entries/h-entry.html' %}
|
{% include 'entries/h-entry.html' %}
|
||||||
|
|
Loading…
Reference in a new issue