Commit 72a68d34edf for woocommerce
commit 72a68d34edf21c46560a267b65ba313ee447ed2e
Author: mgiannopoulos24 <79588074+mgiannopoulos24@users.noreply.github.com>
Date: Wed May 27 12:28:25 2026 +0300
Fix: Improve responsiveness change on admin status notice. (#65298)
diff --git a/plugins/woocommerce/changelog/fix-admin-status-notice b/plugins/woocommerce/changelog/fix-admin-status-notice
new file mode 100644
index 00000000000..36294aa817f
--- /dev/null
+++ b/plugins/woocommerce/changelog/fix-admin-status-notice
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Fix responsive layout issue on Status admin screen notice buttons
diff --git a/plugins/woocommerce/client/legacy/css/admin.scss b/plugins/woocommerce/client/legacy/css/admin.scss
index cc56cae0dda..d07a0faad77 100644
--- a/plugins/woocommerce/client/legacy/css/admin.scss
+++ b/plugins/woocommerce/client/legacy/css/admin.scss
@@ -1325,6 +1325,24 @@ table.wc_status_table--tools {
}
}
+@media screen and (max-width: 500px) {
+ body.woocommerce_page_wc-status {
+ .updated.woocommerce-message.inline {
+ p.submit {
+ a,
+ button {
+ display: block;
+ width: 100%;
+ margin-bottom: 0.5em;
+ margin-left: 0;
+ text-align: center;
+ box-sizing: border-box;
+ }
+ }
+ }
+ }
+}
+
/**
* FileV2 logs
*/