Fix social link positioning

This commit is contained in:
Joshua Goins 2022-11-08 10:11:34 -05:00
parent c267efc266
commit 8d9c050019
2 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@
<figcaption> <figcaption>
"{{ .title }}" "{{ .title }}"
{{ if .newgrounds_url }} {{ if .newgrounds_url }}
<a href="{{ .newgrounds_url }}"><img alt="Newgrounds Icon" width="19" height="19" src="{{ $newgrounds_icon.Permalink }}"></a> <a href="{{ .newgrounds_url }}" style="vertical-align: bottom"><img style="vertical-align: bottom" alt="Newgrounds Icon" width="19" height="19" src="{{ $newgrounds_icon.Permalink }}"></a>
{{ end }} {{ end }}
</figcaption> </figcaption>
</figure> </figure>

View file

@ -38,10 +38,10 @@
"{{ . }}" "{{ . }}"
{{ end }} {{ end }}
{{ if .newgrounds_url }} {{ if .newgrounds_url }}
<a href="{{ .newgrounds_url }}"><img alt="Newgrounds Icon" width="19" height="19" src="{{ $newgrounds_icon.Permalink }}"></a> <a href="{{ .newgrounds_url }}" style="vertical-align: bottom"><img alt="Newgrounds Icon" style="vertical-align: bottom" width="19" height="19" src="{{ $newgrounds_icon.Permalink }}"></a>
{{ end }} {{ end }}
{{ if .pixiv_url }} {{ if .pixiv_url }}
<a href="{{ .pixiv_url }}"><img alt="Pixiv Icon" width="19" height="19" src="{{ $pixiv_icon.Permalink }}"></a> <a href="{{ .pixiv_url }}" style="vertical-align: bottom"><img alt="Pixiv Icon" style="vertical-align: bottom" width="19" height="19" src="{{ $pixiv_icon.Permalink }}"></a>
{{ end }} {{ end }}
</figcaption> </figcaption>