Remove book-icon class from footer links

This commit is contained in:
Alex Shpak
2025-09-13 09:45:05 +02:00
parent 59c40e70c2
commit e379c19e75
+2 -2
View File
@@ -12,7 +12,7 @@
<div class="flex flex-wrap justify-between"> <div class="flex flex-wrap justify-between">
<span> <span>
{{ with $prev }} {{ with $prev }}
<a href="{{ .RelPermalink }}" class="flex align-center book-icon"> <a href="{{ .RelPermalink }}" class="flex align-center">
<img src="{{ "svg/backward.svg" | relURL }}" class="book-icon" alt="Previous" title="{{ partial "docs/title" . }}" /> <img src="{{ "svg/backward.svg" | relURL }}" class="book-icon" alt="Previous" title="{{ partial "docs/title" . }}" />
<span>{{ partial "docs/title" . }}</span> <span>{{ partial "docs/title" . }}</span>
</a> </a>
@@ -20,7 +20,7 @@
</span> </span>
<span> <span>
{{ with $next }} {{ with $next }}
<a href="{{ .RelPermalink }}" class="flex align-center book-icon"> <a href="{{ .RelPermalink }}" class="flex align-center">
<span>{{ partial "docs/title" . }}</span> <span>{{ partial "docs/title" . }}</span>
<img src="{{ "svg/forward.svg" | relURL }}" class="book-icon" alt="Next" title="{{ partial "docs/title" . }}" /> <img src="{{ "svg/forward.svg" | relURL }}" class="book-icon" alt="Next" title="{{ partial "docs/title" . }}" />
</a> </a>