diff --git a/src/wp-admin/css/about.css b/src/wp-admin/css/about.css
index 51e49261d6..a2ddd0e1ff 100644
a
|
b
|
|
99 | 99 | .about__section { |
100 | 100 | background: #f3f4f5; |
101 | 101 | background: var(--background); |
| 102 | clear: both; |
102 | 103 | } |
103 | 104 | |
104 | 105 | .about__container .has-accent-background-color { |
… |
… |
|
452 | 453 | -ms-writing-mode: tb-rl; |
453 | 454 | writing-mode: vertical-rl; |
454 | 455 | transform: rotate(180deg); |
| 456 | direction: ltr; |
| 457 | } |
| 458 | |
| 459 | /* rtl:ignore */ |
| 460 | .rtl .about__header-title { |
| 461 | transform: none; |
| 462 | direction: rtl; |
455 | 463 | } |
456 | 464 | |
457 | 465 | /* Needs to be inline-block to use vertical-align, needs specificity to override flex. */ |
… |
… |
|
543 | 551 | .about__container .about__header-text { |
544 | 552 | font-size: 1.4em; |
545 | 553 | } |
546 | | } |
547 | 554 | |
548 | | @media screen and (max-width: 600px) { |
549 | 555 | .about__header { |
550 | 556 | display: block; |
551 | | min-height: unset; |
552 | | max-height: unset; |
| 557 | min-height: none; |
| 558 | max-height: none; |
553 | 559 | height: auto; |
554 | 560 | } |
555 | 561 | |
… |
… |
|
561 | 567 | padding-top: 80%; |
562 | 568 | padding-bottom: 0; |
563 | 569 | -webkit-writing-mode: initial; |
564 | | -ms-writing-mode: initial; |
| 570 | -ms-writing-mode: lr-tb; |
565 | 571 | writing-mode: initial; |
566 | 572 | transform: none; |
567 | 573 | } |
568 | 574 | |
| 575 | .rtl .about__header-title { |
| 576 | -ms-writing-mode: rl-tb; |
| 577 | } |
569 | 578 | .about__header-text { |
570 | 579 | text-align: left; |
571 | 580 | } |