How do I avoid items in flex column stretching to full width? I want it to be original size as created.
.myForm {
display: flex;
flex-direction: column;
}
<form class="myForm">
<input type="text" />
<input type="text" />
<button>Test</button>
</form>