diff --git a/src/wp-admin/css/media.css b/src/wp-admin/css/media.css
index 45a7a4e7e5..de7e485e55 100644
|
a
|
b
|
border color while dragging a file over the uploader drop area */ |
| 900 | 900 | |
| 901 | 901 | .imgedit-panel-content { |
| 902 | 902 | display: grid; |
| 903 | | grid-template-columns: 640px 1fr; |
| | 903 | grid-template-columns: 1fr; |
| 904 | 904 | gap: 20px; |
| 905 | 905 | } |
| 906 | 906 | |
| 907 | | @media screen and (max-width: 1120px) { |
| 908 | | .imgedit-panel-content { |
| 909 | | grid-template-columns: 1fr; |
| | 907 | @media screen and (min-width: 1200px) { |
| | 908 | .imgedit-panel-content.imgedit-panel-tools { |
| | 909 | grid-template-columns: 50% 50%; |
| 910 | 910 | } |
| 911 | 911 | } |
| 912 | 912 | |