From f3236c2c93988dc09096767b42b6fc07916a7d71 Mon Sep 17 00:00:00 2001 From: Aaron Jorbin Date: Mon, 4 Dec 2023 18:05:08 +0000 Subject: [PATCH] Help/About: Change CSS align-item for full browser support. The values of `start` and `end` are not fully supported by Opera Mini which has 1.01% usage. There is no material change in functionality with this change. Props kebbet, NekoJonez, luminuu, hellofromTonya. Fixes #59819. git-svn-id: https://develop.svn.wordpress.org/trunk@57151 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/css/about.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wp-admin/css/about.css b/src/wp-admin/css/about.css index ff140ac50e..1cd4175dd1 100644 --- a/src/wp-admin/css/about.css +++ b/src/wp-admin/css/about.css @@ -534,8 +534,8 @@ position: relative; display: flex; flex-direction: column; - align-items: start; - justify-content: end; + align-items: flex-start; + justify-content: flex-end; box-sizing: border-box; padding: var(--gap) 0; height: clamp(12.5rem, -1.25rem + 36.67vw, 26.25rem); @@ -1126,7 +1126,7 @@ } .about-wrap .is-vertically-aligned-top { - align-self: start; + align-self: flex-start; } .about-wrap .is-vertically-aligned-center {