Recently, I discovered that with the alpha 6 version of bootstrap 4, they have made some changes to utilize flexbox which has caused some issues in my existing code from alpha 5. After checking out this fiddle, I attempted to use the flex justify content class to align the navigation bar content to the right as shown below:
<ul class="navbar-nav justify-content-end">
Upon inspecting the element, it appears that
justify-content: flex-end !important;
is applied, so theoretically it should work. However, it doesn't seem to be functioning correctly. What could be causing this issue?