chore: drop default shape
This commit is contained in:
parent
79544bc0a0
commit
4bba71062f
3 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ export const img = async (
|
||||||
alt = '',
|
alt = '',
|
||||||
className,
|
className,
|
||||||
loading = 'lazy',
|
loading = 'lazy',
|
||||||
shape = 'square',
|
shape = '',
|
||||||
icon,
|
icon,
|
||||||
maxWidth = 1248,
|
maxWidth = 1248,
|
||||||
sizes = '90vw',
|
sizes = '90vw',
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<div class="avatar__wrapper flex--centered">
|
<div class="avatar__wrapper flex--centered">
|
||||||
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
||||||
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
||||||
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'rounded', fallbackIcon %}
|
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'square', fallbackIcon %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
<div class="comment">
|
<div class="comment">
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
<div class="avatar__wrapper flex--centered">
|
<div class="avatar__wrapper flex--centered">
|
||||||
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
{% capture authorAlt %}{{ mention.author.name | escape }}{% endcapture %}
|
||||||
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
{% capture fallbackIcon %}{% tablericon "user" authorAlt %}{% endcapture %}
|
||||||
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'rounded', fallbackIcon %}
|
{% image mention.author.photo, authorAlt, 'avatar__image', 'lazy', 'square', fallbackIcon %}
|
||||||
</div>
|
</div>
|
||||||
</a>
|
</a>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Reference in a new issue