Fix wishlist style

This commit is contained in:
Jay Trees 2022-02-23 13:33:43 +01:00
parent 8ec5aa3053
commit 0fc471291b

View file

@ -53,24 +53,26 @@ $page->navigation();
</div> </div>
<?php } ?> <?php } ?>
<div class="ui segment"> <div class="ui horizontal stackable segments">
<h2 class="ui header">What to do?</h2> <div class="ui segment">
<p> <h2 class="ui header">What to do?</h2>
If you found something you would like to buy, <p>
click the <span class="ui tiny horizontal label">Commit</span> button If you found something you would like to buy,
and it will become unavailable for others. click the <span class="ui tiny horizontal label">Commit</span> button
</p> and it will become unavailable for others.
</p>
</div>
</div> </div>
</div>
<div class="wishlist-cards"> <div class="wishlist-cards">
<?php <?php
echo $wishlist->getCards( echo $wishlist->getCards(
array( array(
'exclude' => array('unavailable'), 'exclude' => array('unavailable'),
) )
); );
?> ?>
</div>
</div> </div>
</main> </main>