1
0
Fork 0

make list items more consistant

This commit is contained in:
ChaotiCryptidz 2022-06-02 16:07:19 +01:00
parent 99a458cfdb
commit 17609f2661
No known key found for this signature in database

View file

@ -49,7 +49,9 @@ export class FoodItem extends Component<FoodItemProps> {
render() { render() {
return ( return (
<HideIfFoodExcluded {...this.props}> <HideIfFoodExcluded {...this.props}>
<p class="list-group-item h5" role="listitem">{this.props.title}</p> <div class="list-group-item" role="listitem">
<p class="mb-1 h5">{this.props.title}</p>
</div>
</HideIfFoodExcluded> </HideIfFoodExcluded>
) )
} }