My goal is to design a contact field where the icon and text are on the same line. Here is how it currently appears:
https://i.sstatic.net/y7OtB.png
.code-block {
display: inline-grid;
background-color: #232323;
border-radius: 5px;
padding: 5px;
margin-bottom: 7px;
}
.code-block code {
color: #008a00;
}
.code-block .icons {
display: inline-block;
vertical-align: top;
width: 14px;
height: 14px
}
<div class="code-block">
<code>Discord: ...#6177</code>
<img class="icons" src="https://via.placeholder.com/40" alt="Discord" width="10" height="10">
</div>
How can I adjust it so that everything fits in one line?