Skip to content

Commit b21c6ca

Browse files
authored
Wrap tags on tag page (#30)
Remove style from `div` to honor css. Fixes #1380.
1 parent f22d61d commit b21c6ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tags.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ul {
4242
{% assign top_popular_tags = sorted_popular_tags | slice: 0, page.popular_count %}
4343

4444
### Top {{ page.popular_count }} Tags
45-
<div style="white-space: nowrap;">
45+
<div>
4646
{% for tag in top_popular_tags %}
4747
{% assign tagitems = tag | split: '#' %}
4848
{% assign name = tagitems[1] %}
@@ -77,7 +77,7 @@ ul {
7777

7878
{% if filtered_list.size > 0 %}
7979
<b>{{ letter }}</b>
80-
<div style="white-space: nowrap;">
80+
<div>
8181
{% for tag in filtered_list %}
8282
<a class="crate-tag-link" href="javascript:void(0)" onclick="javascript:filter_ul('tag-{{ tag }}')">#{{ tag }}</a>{% endfor %}
8383
</div>

0 commit comments

Comments
 (0)