feat: remove tailwind

This commit is contained in:
Cory Dransfeldt 2023-12-28 08:28:31 -08:00
parent 447e3b417d
commit 9b2d0883e5
No known key found for this signature in database
56 changed files with 1541 additions and 3862 deletions

View file

@ -1,6 +1,6 @@
{%- capture pageUrl %}/{{ link | downcase }}/{% endcapture -%}
{% if pageUrl contains page.fileSlug and page.fileSlug %}
<span class="cursor-not-allowed active">
<span class="active">
{% if icon %}
{% tablericon icon link %}
{% else %}
@ -8,11 +8,13 @@
{% endif %}
</span>
{% else %}
<a class="text-gray-700 hover:text-blue-800 dark:text-white dark:hover:text-blue-200 !no-underline" href="/{{ link | downcase }}">
{% if icon %}
{% if icon %}
<a class="link--icon" href="/{{ link | downcase }}">
{% tablericon icon link %}
{% else %}
</a>
{% else %}
<a href="/{{ link | downcase }}">
{{ link }}
{% endif %}
</a>
</a>
{% endif %}
{% endif %}