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

github.com/darshanbaral/sada.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/social.html')
-rw-r--r--layouts/partials/social.html16
1 files changed, 7 insertions, 9 deletions
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index 38e08bd..b2c4852 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -1,9 +1,7 @@
-<ul class="list-inline mb-1 mt-2">
- {{ range .Site.Params.social.list }}
- <li class="list-inline-item ml-1 mr-1">
- <a class="text-warning" href="{{ .url }}">
- <i class="{{ .class }} {{ .icon }}" style="font-size: 2em;"></i>
- </a>
- </li>
- {{ end }}
-</ul> \ No newline at end of file
+<div class="flex mb-1 mt-2 justify-center flex-wrap">
+ {{ range .Site.Params.social.list }}
+ <a href="{{ .url }}">
+ <i class="{{ .icon }} text-2xl py-1 px-2 m-1 rounded hover:bg-gray-300 dark:hover:bg-dark3"></i>
+ </a>
+ {{ end }}
+</div>