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

github.com/budparr/gohugo-theme-ananke.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRegis Philibert <login@regisphilibert.com>2022-01-19 19:42:08 +0300
committerRegis Philibert <login@regisphilibert.com>2022-01-19 19:42:08 +0300
commitd1c94223f9174f64ed596a1cd61dc9695feab6ac (patch)
treed7a465d2409a850e31dffaed0f9ef7948db8e3d6
parent921f2c11f9f07dd65ace8be99ee78add287dfdf0 (diff)
Use Tachyon inline class instead of custom css433-fix-tags-layout
-rw-r--r--assets/ananke/css/_styles.css4
-rw-r--r--layouts/partials/tags.html4
2 files changed, 2 insertions, 6 deletions
diff --git a/assets/ananke/css/_styles.css b/assets/ananke/css/_styles.css
index bc2ee37..9db98a7 100644
--- a/assets/ananke/css/_styles.css
+++ b/assets/ananke/css/_styles.css
@@ -18,7 +18,3 @@
.nested-links a{
overflow-wrap: break-word;
}
-
-.tags li {
- display: inline;
-}
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
index da6bc14..976a9a2 100644
--- a/layouts/partials/tags.html
+++ b/layouts/partials/tags.html
@@ -1,6 +1,6 @@
-<ul class="pa0 tags">
+<ul class="pa0">
{{ range .Params.tags }}
- <li class="list">
+ <li class="list di">
<a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}" class="link f5 grow no-underline br-pill ba ph3 pv2 mb2 dib black sans-serif">
{{- . -}}
</a>