forked from MarseyWorld/MarseyWorld
fix
parent
b949596af2
commit
c79b908d3d
|
@ -17,10 +17,6 @@
|
|||
See which losers downvoted your quality content.
|
||||
</small>
|
||||
</div>
|
||||
<form action="votes" method="get" class="ml-auto flex items-center">
|
||||
<input id="link-input" type="text" class="form-input" name="link" placeholder="Enter post url" value="{{thing.permalink if thing else ''}}">
|
||||
<input type="submit" value="See votes" class="ml-2 btn btn-gray">
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
@ -58,7 +54,7 @@
|
|||
<tr class="shadow-inset-t-white-05 odd:bg-gray-200">
|
||||
<td class="px-6 py-4 whitespace-nowrap">
|
||||
<div class="flex items-center">
|
||||
<img src="{{vote.user.profile_url}}" class="flex-shrink-0 p-[3px] border w-10 h-10 object-cover {{ 'bg-red-800 border-red-900' if v.username == vote.user.username else 'bg-white border-gray-300' }}" alt="{{ vote.user.username }} avatar"/>
|
||||
<img src="{{vote.user.profile_url}}" class="flex-shrink-0 p-[3px] border w-12 h-12 object-cover {{ 'bg-red-800 border-red-900' if v.username == vote.user.username else 'bg-white border-gray-300' }}" alt="{{ vote.user.username }} avatar"/>
|
||||
<!-- User Details -->
|
||||
<div class="ml-3">
|
||||
<a class="block font-bold text-black hover:text-red-600" href="/@{{vote.user.username}}">
|
||||
|
|
Loading…
Reference in New Issue