Skip to content

Commit f61481b

Browse files
committed
Remove the hardcoded image width/heigth for the rss icons
1 parent 4898d4b commit f61481b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

templates/planet/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2>Arch Planet</h2>
1717

1818
<div id="planet">
1919
<a href="{% url 'planet-feed' %}" title="Planet Arch Linux RSS Feed"
20-
class="rss-icon"><img width="16" height="16" src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
20+
class="rss-icon"><img src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
2121

2222
{% for entry in feed_items %}
2323
<h4>

templates/public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h3>
4343
</h3>
4444

4545
<a href="/feeds/news/" title="Arch News RSS Feed"
46-
class="rss-icon"><img width="16" height="16" src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
46+
class="rss-icon"><img src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
4747

4848
{% for news in news_updates %}{% if forloop.counter0 < 5 %}
4949
<h4>
@@ -90,7 +90,7 @@ <h3>Recent Updates <span class="more">(<a href="/packages/?sort=-last_update"
9090
title="Browse all of the latest packages">more</a>)</span></h3>
9191

9292
<a href="/feeds/packages/" title="Arch Package Updates RSS Feed"
93-
class="rss-icon"><img width="16" height="16" src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
93+
class="rss-icon"><img src="{% static "rss.svg" %}" alt="RSS Feed" /></a>
9494

9595
<table>
9696
{% for update in pkg_updates %}

0 commit comments

Comments
 (0)