diff options
author | 2022-10-12 18:23:50 +0200 | |
---|---|---|
committer | 2022-10-12 18:23:50 +0200 | |
commit | 80c2833d83aa601ddf725d6830e33ec3da74d922 (patch) | |
tree | 027c1dada5fdb180c0660518061d44653f8eef87 /web/template | |
parent | [feature] Add `/api/v1/admin/custom_emojis` endpoint (#902) (diff) | |
download | gotosocial-80c2833d83aa601ddf725d6830e33ec3da74d922.tar.xz |
[frontend] small fixes (#907)
* add missing watchify dependency
* replace svg rss icon with forkawesome+styling
* use $white1 instead of hardcoding white
* fix toot overflow
Diffstat (limited to 'web/template')
-rw-r--r-- | web/template/profile.tmpl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/template/profile.tmpl b/web/template/profile.tmpl index 9342f0f43..98197f7cf 100644 --- a/web/template/profile.tmpl +++ b/web/template/profile.tmpl @@ -30,7 +30,9 @@ <h2 id="recent"> <span>Latest public toots</span> {{ if .rssFeed }} - <a href="{{ .rssFeed }}"><img class="rsslogo" src="/assets/rss.svg" alt="The orange RSS logo."/></a> + <a href="{{ .rssFeed }}" aria-label="RSS feed"> + <i class="rss-icon fa fa-rss-square" aria-hidden="true"></i> + </a> {{ end }} </h2> {{ if not .statuses }} |