You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
980 B
HTML
19 lines
980 B
HTML
<div class="mb-2 flex justify-start items-center gap-2">
|
|
<div
|
|
class="w-[30px] h-[30px] rounded-full shadow-md text-white flex justify-center items-center bg-osiblue uppercase text-xs">
|
|
{% if member.staffprofile.image %}
|
|
<img class="w-full h-full rounded-full"
|
|
src="{{domain}}{{member.staffprofile.image.url}}">
|
|
{% else %}
|
|
<p>{{member.first_name.0}}{{member.last_name.0}}</p>
|
|
{% endif %}
|
|
</div>
|
|
<div
|
|
class="w-fit rounded-r-3xl rounded-tl-3xl px-3 py-3 bg-gray-50 border border-gray-100 shadow-md flex space-x-1 justify-start items-center">
|
|
<div class="h-1.5 w-1.5 bg-secondosiblue rounded-full animate-typing"></div>
|
|
<div class="h-1.5 w-1.5 bg-osiblue rounded-full animate-typing" style="animation-delay: 0.2s;"></div>
|
|
<div class="h-1.5 w-1.5 bg-fifthosiblue rounded-full animate-typing" style="animation-delay: 0.4s;">
|
|
</div>
|
|
</div>
|
|
</div>
|