Merge pull request #13521 from Snuffleupagus/issue-13518

[XFA] Use `align-items: flex-start;` to improve browser compatibility (issue 13518)
This commit is contained in:
calixteman 2021-06-09 15:28:07 +02:00 committed by GitHub
commit b4c96f3bc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -118,7 +118,7 @@
.xfaTop { .xfaTop {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: start; align-items: flex-start;
} }
.xfaTop > .xfaCaption { .xfaTop > .xfaCaption {
@ -128,7 +128,7 @@
.xfaBottom { .xfaBottom {
display: flex; display: flex;
flex-direction: column-reverse; flex-direction: column-reverse;
align-items: start; align-items: flex-start;
} }
.xfaBottom > .xfaCaption { .xfaBottom > .xfaCaption {