summaryrefslogtreecommitdiffstats
path: root/themes/danix-xyz-hacker/layouts/partials
diff options
context:
space:
mode:
Diffstat (limited to 'themes/danix-xyz-hacker/layouts/partials')
-rw-r--r--themes/danix-xyz-hacker/layouts/partials/article-nav.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/danix-xyz-hacker/layouts/partials/article-nav.html b/themes/danix-xyz-hacker/layouts/partials/article-nav.html
index d7f8ca3..8a118b3 100644
--- a/themes/danix-xyz-hacker/layouts/partials/article-nav.html
+++ b/themes/danix-xyz-hacker/layouts/partials/article-nav.html
@@ -18,13 +18,13 @@
{{/* ---- Previous (left side) ---- */}}
{{ if $prev }}
<a href="{{ $prev.Permalink }}"
- class="article-nav-link truncate max-w-[45%]"
+ class="article-nav-link truncate md:max-w-[45%] text-left"
rel="prev"
title="{{ $prev.Title }}">
◄ {{ $prev.Title }}
</a>
{{ else }}
- <span class="article-nav-placeholder" aria-label="Beginning of articles">
+ <span class="article-nav-placeholder text-left" aria-label="Beginning of articles">
◄ (beginning)
</span>
{{ end }}
@@ -32,7 +32,7 @@
{{/* ---- Next (right side) ---- */}}
{{ if $next }}
<a href="{{ $next.Permalink }}"
- class="article-nav-link truncate max-w-[45%] text-right"
+ class="article-nav-link truncate md:max-w-[45%] text-right"
rel="next"
title="{{ $next.Title }}">
{{ $next.Title }} ►