I am making a GitHub homepage clone with HTML and CSS before I move on to JS. I'm currently on the navigation bar and I'm having some trouble with the bell icon, plus sign icon, and profile image icon on the right. However, it's stuck in the center. Any help would be greatly appreciated!
#nav-bar {
background-color: black;
height: 53px;
display: flex;
align-items: center;
}
#profile-nav-bar {
color: white;
list-style: none;
display: flex;
}
#profile-nav-bar li {
justify-content: flex-end;
}
<body>
<nav id="nav-bar">
<ul id="profile-nav-bar">
<li>
<i class="far fa-bell"></i>
</li>
<li>
+
</li>
<li>
<i class="fas fa-sort-down"></i>
</li>
<li>
<i class="far fa-user"></i>
</li>
<li>
<i class="fas fa-sort-down"></i>
</li>
</ul>
</nav>
</body>