How can I modify the CSS styles or configure the p-menubar from PrimeNg to have it expand from right to left in the responsive version? Currently, when using the classes
align-items-center flex justify-content-between
, the menu remains stuck to the right edge and attempts to expand towards the right side.
<div class="header-container align-items-center flex justify-content-between">
<img src="/assets/logo.png" alt="Image" height="40">
<p-menubar [model]="items"></p-menubar>
</div>
https://i.sstatic.net/cwj5ueTg.png
I have tried various solutions involving different settings in css such as right, top, position, and flex, but everything ended up looking uneven and unbalanced :(