Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/yoshiharuyamashita/blackburn.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortristor <tristor@gmail.com>2021-02-07 16:11:51 +0300
committertristor <tristor@gmail.com>2021-02-07 16:11:51 +0300
commit8d2cc5b532068f6ce60a2c5842ad467ced861346 (patch)
treee64034a1b0b4e671f06033902747fb0634a1ad8f
parent46e35df663e77f020861ad54eda6a977161b4eac (diff)
Adds the fa-fw class to the linkedin and RSS social icons so they align correctly with the rest in the sidebar.
-rw-r--r--layouts/partials/social.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index f1cc534..1b3b3ba 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -4,7 +4,7 @@
{{ if .OutputFormats.Get "RSS" }}
<li class="pure-menu-item">
<a class="pure-menu-link" href='{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}'><i
- class="fas fa-rss"></i>RSS</a>
+ class="fas fa-rss fa-fw"></i>RSS</a>
</li>
{{ end }}
@@ -100,7 +100,7 @@
{{ with .Site.Social.linkedin }}
<li class="pure-menu-item">
- <a class="pure-menu-link" href="https://linkedin.com/in/{{ . }}" rel="me" target="_blank"><i class="fab fa-linkedin"></i></i>LinkedIn</a>
+ <a class="pure-menu-link" href="https://linkedin.com/in/{{ . }}" rel="me" target="_blank"><i class="fab fa-linkedin fa-fw"></i>LinkedIn</a>
</li>
{{ end }}