Skip to content

Commit

Permalink
Fix overflow issue on blog index
Browse files Browse the repository at this point in the history
  • Loading branch information
ahosgood committed Nov 28, 2024
1 parent 2a361b2 commit cd82493
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions app/templates/blog/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,7 @@ <h2 class="tna-heading-l">Blog posts, page {{ page }} of {{ pages }}</h2>
{%- else %}
<h2 class="tna-heading-l">Most recent posts</h2>
{%- endif %}
</div>
<div class="tna-container tna-container--nested">
<ul class="tna-container">
<ul class="tna-container tna-container--nested">
{% for blog_post in blog_posts %}
{% if page > 1 or loop.index > 1 %}
<li class="tna-column tna-column--width-1-3 tna-column--width-1-2-medium tna-column--width-1-2-small tna-column--full-tiny tna-!--margin-top-m tna-!--margin-bottom-l">
Expand Down

0 comments on commit cd82493

Please sign in to comment.