I'm struggling to align these lines of text on the same left level, but I seem to be facing some issues. https://i.sstatic.net/bZIPV.png
I've attempted it this way, however the output above is not what I expected. https://i.sstatic.net/cCFyw.png
Here is the CSS code snippet:
.sideBar-footer {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
bottom: 10px;
}
.sideBar-footer-image {
width: 50px;
height: 50px;
background-color: #D9D9D9;
border-radius: 10px;
}
.sideBar-footer-text {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.sideBar-footer-text h1 {
font-size: 15px;
font-weight: 500;
line-height: 15px;
color: #FFFFFF;
}
.sideBar-footer-text p {
font-weight: 400;
font-size: 12px;
line-height: 14px;
color: #FFFFFF;
}
Could someone please help me identify where I might be making an error?