How can I position the cog container on the right side of the page and adjust its size to match this image:
https://i.sstatic.net/YrW33.png
.header-container {
border-bottom-style: solid;
border-bottom-width: 1px;
border-bottom-color: rgb(242, 242, 242);
height: 4em;
padding: 1em;
display: flex;
}
.header-container .header-logo {
height: 4em;
display: flex;
}
.header-container .beta-tag {
color: rgb(255, 0, 77);
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
-webkit-font-smoothing: antialiased;
padding-left: 5px;
}
.header-container .settings-button {
flex-direction: row;
flex-wrap: nowrap;
width: 100%;
align-items: center;
vertical-align: center;
height: em;
}
<div class="header-container">
<img class="header-logo" src="https://app.houseparty.com/static/media/logo_text.f1778ae3.svg" />
<div class="beta-tag">Beta</div>
<div class="settings-button">
<svg
viewBox="0 0 40 40"
xmlns="http://www.w3.org/2000/svg"
style="cursor: pointer; display: block; fill: rgb(102, 102, 102);"
>
<path
d="M38.1 17.3l-...";
</path>
</svg>
</div>
</div>
Fiddle available at: https://jsfiddle.net/ta2ce75y/1/.