diff --git a/packages/common/src/button.js b/packages/common/src/button.js
index eb4a793312b36eeb0007ef827a627d96e07fd5b5..55ecfc64a433293395a7b625c22ae2c16c90bbc9 100644
--- a/packages/common/src/button.js
+++ b/packages/common/src/button.js
@@ -157,6 +157,18 @@ export class LoadingButton extends ScopedElementsMixin(LitElement) {
             .button {
                 width: 100%;
             }
+
+            @media only screen
+            and (orientation: portrait)
+            and (max-width: 768px) {
+                .button {
+                    min-height: 40px;
+                }
+
+                .label {
+                    margin: auto;
+                }
+            }
         `;
     }