Fix image ring colour

This commit is contained in:
Oliver Davies 2024-03-22 15:30:47 +00:00
parent 0b90bb11bb
commit 36360ae675
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
<div class="mt-4">
<div class="flex space-x-4">
<div class="flex flex-col flex-shrink-0 justify-start">
<img src="{{ site.assets.url }}/assets/images/social-avatar.jpg" alt="Picture of Oliver" class="my-0 w-16 h-16 rounded-full ring-2 ring-gray dark:ring-white">
<img src="{{ site.assets.url }}/assets/images/social-avatar.jpg" alt="Picture of Oliver" class="my-0 w-16 h-16 rounded-full ring-[3px] ring-blue-primary dark:ring-white">
</div>
<div class="{{ site.prose_classes }}">

View file

@ -38,7 +38,7 @@
{% if testimonial.image %}
<span class="not-prose order-first flex-shrink-0">
<img class="size-16 rounded-full ring-2 ring-gray-500 dark:ring-white" alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
<img class="size-16 rounded-full ring-[3px] ring-blue-primary dark:ring-white" alt="Photo of {{ testimonial.name }}" src="{{ testimonial.image.url }}" />
</span>
{% endif %}
</footer>