I'm looking to make sure the text is positioned just above the hr tag, similar to how the logout button appears with bootstrap. This is the desired outcome:
https://i.sstatic.net/gIl1b.png
Here's the code I have using bootstrap :
<div className="position-relative">
<hr/>
<div className="position-absolute end-0 bottom-0 d-flex">
<p className="align-baseline //not working">Logged in as {user?.email}</p>
<button onClick={handleLogout} className="btn btn-primary ms-2 m-1">Logout</button>
</div>
</div>
Appreciate any assistance
#Edit : after adding mb-0 to my p tag : https://i.sstatic.net/DEhpR.png