Is there a bug with certain versions of Chrome that fail for horizontal centering with Chrome? The code below is a fairly simple center with flexbox that works fine on Firebox 62 but does not center on both Chrome 69 and 70 :-(
fieldset {
display: flex;
flex-direction: column;
align-items: center;
}
<div>
<form>
<fieldset>
<input type="text" id="password"></input>
<p>Some dummy text</p>
<button class="button-primary">Login</button>
</fieldset>
</form>
</div>