From f716de7a2dc9b8e4aef99842c5ea6485855b18ba Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Wed, 9 Jun 2021 08:17:36 +0200 Subject: [PATCH] [XFA] Use `align-items: flex-start;` to improve browser compatibility (issue 13518) https://developer.mozilla.org/en-US/docs/Web/CSS/align-items#browser_compatibility --- web/xfa_layer_builder.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/xfa_layer_builder.css b/web/xfa_layer_builder.css index 46a3cbd47..eeac12534 100644 --- a/web/xfa_layer_builder.css +++ b/web/xfa_layer_builder.css @@ -118,7 +118,7 @@ .xfaTop { display: flex; flex-direction: column; - align-items: start; + align-items: flex-start; } .xfaTop > .xfaCaption { @@ -128,7 +128,7 @@ .xfaBottom { display: flex; flex-direction: column-reverse; - align-items: start; + align-items: flex-start; } .xfaBottom > .xfaCaption {