Fix tags separation on new category page
This commit is contained in:
parent
999f52954f
commit
048dea01f4
|
@ -17,9 +17,11 @@
|
|||
<tr>
|
||||
{{category-link topic.category}}
|
||||
{{#if topic.tags}}
|
||||
{{#each topic.visibleListTags as |tag|}}
|
||||
{{discourse-tag tag}}
|
||||
{{/each}}
|
||||
<div class="discourse-tags">
|
||||
{{#each topic.visibleListTags as |tag|}}
|
||||
{{discourse-tag tag}}
|
||||
{{/each}}
|
||||
</div>
|
||||
{{/if}}
|
||||
</tr>
|
||||
</td>
|
||||
|
|
|
@ -110,6 +110,10 @@ $tag-color: scale-color($primary, $lightness: 40%);
|
|||
}
|
||||
}
|
||||
|
||||
.categories-list .topic-list-latest .discourse-tags {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.mobile-view .topic-list-item .discourse-tags {
|
||||
display: inline-block;
|
||||
font-size: 0.9em;
|
||||
|
|
Loading…
Reference in New Issue