chore: addtl styling consistency

This commit is contained in:
Cory Dransfeldt 2023-08-13 14:31:04 -07:00
parent c858089644
commit 9d8c2c3b79
No known key found for this signature in database
2 changed files with 4 additions and 3 deletions

View file

@ -1,10 +1,10 @@
<nav>
<ul class="flex">
<li class="mr-6">
<a class="text-gray-700 hover:text-pink-500 dark:text-gray-200 dark:hover:text-pink-500{% if page.url == '/now/' %} active{% endif %}" href="/now">Now</a>
<a class="text-gray-700 hover:text-pink-500 dark:text-gray-200 dark:hover:text-pink-500 !no-underline{% if page.url == '/now/' %} active{% endif %}" href="/now">Now</a>
</li>
<li class="mr-6">
<a class="text-gray-700 hover:text-pink-500 dark:text-gray-200 dark:hover:text-pink-500{% if page.url == '/about/' %} active{% endif %}" href="/about">About</a>
<a class="text-gray-700 hover:text-pink-500 dark:text-gray-200 dark:hover:text-pink-500 !no-underline{% if page.url == '/about/' %} active{% endif %}" href="/about">About</a>
</li>
<li class="mr-6">
{% render "icons/tags.liquid", page: page %}

View file

@ -57,7 +57,8 @@ a:active,
p > a,
span > a,
blockquote > a {
blockquote > a,
li > a {
text-decoration: underline !important;
}