remotes/1693045480750635534/spooky-22
kek7198 2021-11-25 10:26:22 -06:00
parent 8c88cfe1cf
commit fcdaa3f5e3
2 changed files with 3 additions and 3 deletions

View File

@ -277,7 +277,7 @@
<div class="flex flex-col flex-shrink-0 items-center {{ 'mr-4' if not c.parent_comment_id or standalone else 'mr-3' }}">
{% if standalone or level==1 %}
<img loading="lazy" src="{{ c.author.profile_url }}" class="hidden md:block flex-shrink-0 w-16 h-16 mb-2 p-[3px] bg-white border border-gray-900 object-cover" alt="{{ c.author.username }} avatar"/>
<img loading="lazy" src="{{ c.author.profile_url }}" class="hidden md:block flex-shrink-0 w-14 h-14 mb-2 p-[3px] bg-white border border-gray-900 object-cover" alt="{{ c.author.username }} avatar"/>
{% else %}
<img loading="lazy" src="{{ c.author.profile_url }}" class="hidden md:block flex-shrink-0 w-9 h-9 mb-2 p-[3px] bg-white border border-gray-900 object-cover" alt="{{ c.author.username }} avatar"/>
{% endif %}

View File

@ -438,7 +438,7 @@
<!-- Author avatar, post score, and voting buttons -->
<div class="flex flex-col flex-shrink-0 items-center mr-4">
<img loading="lazy" src="{{p.author.profile_url}}" class="w-16 h-16 p-[3px] bg-white border border-gray-900 object-cover mb-2" alt="author avatar"/>
<img loading="lazy" src="{{p.author.profile_url}}" class="w-14 h-14 p-[3px] bg-white border border-gray-900 object-cover mb-2" alt="author avatar"/>
<!-- {% if v %}
<div id="voting" class="shadow-inner shadow-md rounded-md flex flex-col mb-1 py-2 items-center w-16 border-opacity-40 border border-gray-700 bg-gray-700 text-gray-500">
@ -593,7 +593,7 @@
</div>
<div id="comment-form-space-{{p.fullname}}" class="comment-write flex">
<img loading="lazy" src="{{v.profile_url}}" class="w-16 h-16 p-[3px] bg-white border border-gray-900 object-cover mr-4" alt="my avatar"/>
<img loading="lazy" src="{{v.profile_url}}" class="w-14 h-14 p-[3px] bg-white border border-gray-900 object-cover mr-4" alt="my avatar"/>
{% include "/comments/CommentForm.html" %}
</div>