Trying to figure out why the ul within this parent div is not centered vertically. Here is a screenshot of the issue: https://i.sstatic.net/ZOc9M.png
<div className=" d-flex align-items-center bg-primary ">
<ul
className="d-flex align-items-center bg-success"
style={{ gap: "3em" }}
>
<li className="bg-danger">vision</li>
<li>consorzio</li>
<li>contatti</li>
</ul>
</div>
Struggling to get the bg-success class centered within the bg-primary div.