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,18 +1,18 @@
{% if mentions['in-reply-to'].size > 0 %}
<h2 class="text-lg md:text-xl font-black leading-tight dark:text-white">Comments</h2>
<div class="mt-4 mb-4 flex flex-col items-center not-prose">
<h2>Comments</h2>
<div class="interaction__wrapper comments">
{% for mention in mentions['in-reply-to'] %}
<div class="border-bottom flex flex-row items-center border-gray-100 pb-4 w-full">
<div class="group flex flex-row space-between items-center">
<div class="comment__wrapper">
<div class="comment__wrapper--interior">
<a href={{mention.url}}>
<div class="bg-gray-900 dark:bg-white h-14 w-14 border-4 border-white dark:border-gray-900 transition-all ease-in-out duration-300 group-hover:border-blue-800 dark:group-hover:border-blue-200 rounded-full overflow-hidden">
{% image mention.author.photo, mention.author.name %}
<div class="avatar__wrapper">
{% image mention.author.photo, mention.author.name, 'avatar__wrapper-image' %}
</div>
</a>
<div class="ml-3">
<a class="text-gray-700 dark:text-white" href={{mention.url}}>
<p class="text-sm group-hover:text-blue-800 dark:group-hover:text-blue-200">{{ mention.content.text }}</p>
<p class="mt-1 text-xs group-hover:text-blue-800 dark:group-hover:text-blue-200">{{ mention.published | isoDateOnly }}</p>
<div class="comment">
<a href={{mention.url}}>
<p>{{ mention.content.text }}</p>
<time>{{ mention.published | isoDateOnly }}</time>
</a>
</div>
</div>