diff --git a/src/wp-admin/css/edit.css b/src/wp-admin/css/edit.css
index 4a2b7f3..7d9e4b1 100644
|
a
|
b
|
|
| 1128 | 1128 | #major-publishing-actions { |
| 1129 | 1129 | padding: 10px; |
| 1130 | 1130 | clear: both; |
| 1131 | 1131 | border-top: 1px solid #dcdcde; |
| 1132 | 1132 | background: #f6f7f7; |
| 1133 | | display: flex; |
| 1134 | | align-items: center; |
| 1135 | | justify-content: space-between; |
| | 1133 | |
| | 1134 | /* |
| | 1135 | * Restore the pre-7.0 layout. |
| | 1136 | * |
| | 1137 | * Using flex causes layout inconsistencies in the Classic |
| | 1138 | * editor publishing panel. A block layout preserves the |
| | 1139 | * expected button alignment and matches previous releases. |
| | 1140 | */ |
| | 1141 | display: block; |
| 1136 | 1142 | } |
| 1137 | 1143 | |
| | 1144 | #major-publishing-actions::after { |
| | 1145 | content: ""; |
| | 1146 | display: table; |
| | 1147 | clear: both; |
| | 1148 | } |