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