diff options
author | HombreLaser <buran@silosneeded.com> | 2024-10-27 16:42:40 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-10-27 16:42:40 -0600 |
commit | 9fbf9cbfe0aedcad06deaac724fea2003bfc546a (patch) | |
tree | ec75daf6021606c34a51dcc0be3cebb128c4c400 /_includes | |
parent | 8d11d9322e7fbe551c1fe72f44d63da82c9e3301 (diff) |
Add dark theme
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/navigation_buttons.liquid | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/navigation_buttons.liquid b/_includes/navigation_buttons.liquid index 5ac3719..adfed25 100644 --- a/_includes/navigation_buttons.liquid +++ b/_includes/navigation_buttons.liquid @@ -2,7 +2,7 @@ <div class="column"> <div class="navigation-element"> {% if page.next %} - <a class="button is-info" rel="next" href="{{ page.next.url | relative_url }}"> + <a class="button is-info has-text-white" rel="next" href="{{ page.next.url | relative_url }}"> {{ site.data[site.active_lang].strings.post.next }} </a> {% endif %} @@ -11,7 +11,7 @@ <div class="column is-offset-9"> <div class="navigation-element end-justified"> {% if page.previous %} - <a class="button is-info" rel="prev" href="{{ page.previous.url | relative_url }}"> + <a class="button is-info has-text-white" rel="prev" href="{{ page.previous.url | relative_url }}"> {{ site.data[site.active_lang].strings.post.previous }} </a> {% endif %} |