make list items more consistant
This commit is contained in:
parent
99a458cfdb
commit
17609f2661
|
@ -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>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue