Fixed anchor underline artefact

v1.2.0
aymm 2021-05-09 16:32:24 +02:00
parent c4d4c6c86e
commit f906d1dc00
Signed by: phlaym
GPG Key ID: A06651BAB6777237
1 changed files with 2 additions and 4 deletions

View File

@ -127,13 +127,11 @@ if (array_key_exists('poll_created', $_GET) && $_GET['poll_created'] == 1) { ?>
<div class="option-responses" style="grid-row: <?= $row++ ?>;grid-column: 2;">
<?php foreach ($option->respondent_ids as $res_id) {
$u = $api->getUser($res_id, $user_args); ?>
<a href="https://pnut.io/@<?= $u->username ?>">
<img
<a href="https://pnut.io/@<?= $u->username ?>"><img
src="<?= $u->getAvatarUrl(20) ?>"
srcset="<?= get_source_set($u, 20) ?>"
class="avatar"
title="@<?= $u->username ?>">
</a>
title="@<?= $u->username ?>"></a>
<?php } ?>
</div>
<?php } ?>