Trying to align a text and a small image horizontally to the right:
<div class="row float-right">
<div class="title" >Stream Chat</div>
<img src="~assets/chat.svg" />
</div>
<!-- rest of the code -->
<div class"row">
...
Struggling with keeping both elements on the same line and to the right without overlap. The float-right
class moves them to the right but causes the image to stack under the text and shifts the row alignment. Seeking a solution to ensure the text and image are aligned and to the right of the row.