aboutsummaryrefslogtreecommitdiff
path: root/newspipe/web/templates/bookmarks.html
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/web/templates/bookmarks.html')
-rw-r--r--newspipe/web/templates/bookmarks.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/newspipe/web/templates/bookmarks.html b/newspipe/web/templates/bookmarks.html
index 88b31abb..0f6e02c4 100644
--- a/newspipe/web/templates/bookmarks.html
+++ b/newspipe/web/templates/bookmarks.html
@@ -18,10 +18,11 @@
<div class="row">
<div class="col-6">
{% if tag %}
- <span class="glyphicon glyphicon-tags" aria-hidden="true"></span>&nbsp;&nbsp;{{ tag }}
+ <i class="fa fa-tag" aria-hidden="true"></i>&nbsp;&nbsp;{{ tag }}
{% endif %}
{% if query %}
- <span class="glyphicon glyphicon-search" aria-hidden="true"></span>&nbsp;&nbsp;{{ query }}
+ {% if tag %}<br />{% endif %}
+ <i class="fa fa-search" aria-hidden="true"></i>&nbsp;&nbsp;{{ query }}
{% endif %}
</div>
<div class="col-6 text-right pull-right">
bgstack15