Fix cart icon

This commit is contained in:
Jay Trees 2022-03-23 13:31:48 +01:00
parent ed2fc55a36
commit 1fb8a29445
2 changed files with 2 additions and 2 deletions

View file

@ -160,7 +160,7 @@ class Wish
<a class="ui small primary labeled icon button fulfill" <a class="ui small primary labeled icon button fulfill"
title="<?= __('Fulfill wish') ?>" title="<?= __('Fulfill wish') ?>"
> >
<i class="shopping cart icon"></i> <i class="gift icon"></i>
<?= __('Fulfill wish') ?> <?= __('Fulfill wish') ?>
</a> </a>
<?php } ?> <?php } ?>

View file

@ -52,8 +52,8 @@ $page->navigation();
<div class="ui segment"> <div class="ui segment">
<h2 class="ui header"><?= __('What to do?') ?></h2> <h2 class="ui header"><?= __('What to do?') ?></h2>
<p><?= sprintf( <p><?= sprintf(
'<span class="ui primary tiny horizontal label"><i class="shopping cart icon"></i> ' . __('Fulfill wish') . '</span>'
__('If you found a wish you would like to fulfill, click the %s button and it will become unavailable for others.'), __('If you found a wish you would like to fulfill, click the %s button and it will become unavailable for others.'),
'<span class="ui primary tiny horizontal label"><i class="gift icon"></i> ' . __('Fulfill wish') . '</span>'
) ?></p> ) ?></p>
</div> </div>
</div> </div>