Skip to content

Commit

Permalink
Help/About: Change CSS align-item for full browser support.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
aaronjorbin committed Dec 4, 2023
1 parent 96a589b commit f3236c2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/wp-admin/css/about.css
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -1126,7 +1126,7 @@
}

.about-wrap .is-vertically-aligned-top {
align-self: start;
align-self: flex-start;
}

.about-wrap .is-vertically-aligned-center {
Expand Down

0 comments on commit f3236c2

Please sign in to comment.