Seeking assistance with a responsive Bootstrap navbar design. When the navbar collapses, the "logout" button is not aligning properly. Need help to keep it in the top row on the right side next to the toggler icon or underneath the other items on the right side.
Link to normal view: https://i.sstatic.net/96crH.png
Link to collapsed view: https://i.sstatic.net/cvp4T.png
Link to expanded view: https://i.sstatic.net/KuQkp.png
Looking for assistance with the alignment issue. Here's the relevant code:
html {
box-sizing: border-box;
}
body {
background-color: rgb(255, 255, 255);
font-family: 'Raleway', sans-serif;
margin:0
}
#logo {
width: 1em;
padding-bottom: 0.3em;
}
.navbar {
margin-bottom: 5px;
}
.navbar-collapse {
padding-right: 15px;
}
.navbar-toggler-icon {
width: 1em;
height: 1em
}
.nav-link{
text-align: right;
}
<!DOCTYPE html>
<html lang="en>
<!-- More HTML code here -->