Css update

This commit is contained in:
Kristofers Solo 2023-06-29 21:48:06 +00:00
parent 3c214efe43
commit 507b593209
2 changed files with 3 additions and 5 deletions

View File

@ -38,11 +38,11 @@ body {
} }
.button { .button {
@apply font-abel px-12 py-2 border rounded-md transform ease-linear duration-500; @apply font-abel px-12 py-2 border rounded-md transform ease-linear duration-100 hover:bg-opacity-60;
} }
.submit-button-disabled { .submit-button-disabled {
@apply opacity-50 cursor-default; @apply opacity-60 cursor-default;
} }
.submit-button-enabled { .submit-button-enabled {

View File

@ -64,9 +64,7 @@
<div class="flex items-center justify-between"> <div class="flex items-center justify-between">
<p class="mx-4">{{ user.username }}</p> <p class="mx-4">{{ user.username }}</p>
<a href="{% url 'profile' user.username %}"> <a href="{% url 'profile' user.username %}">
<img src="{{ user.profile.picture.url }}" <img src="{{ user.profile.picture.url }}" class="w-[2rem]" alt="pic" />
class="w-[2rem]"
alt="{{ user.username }}'s profile picture" />
</a> </a>
</div> </div>
{% else %} {% else %}