diff --git a/src/components/user/Login.vue b/src/components/user/Login.vue index 946c0b6a0..6d9a04974 100644 --- a/src/components/user/Login.vue +++ b/src/components/user/Login.vue @@ -49,7 +49,7 @@ -
+
diff --git a/src/styles/theme/content.scss b/src/styles/theme/content.scss index a43e47e45..22274d5e7 100644 --- a/src/styles/theme/content.scss +++ b/src/styles/theme/content.scss @@ -22,12 +22,18 @@ } .noauth-container { - width: 450px; + max-width: 450px; + width: 100%; margin: 0 auto; - padding: 1rem 0; + padding: 1rem; - @media screen and (max-width: calc(450px + 2rem)) { - width: 100%; - padding: 1rem; + @media screen and (max-width: 450px) { + .login-buttons { + flex-direction: column; + + .control:first-child { + margin-bottom: 1rem; + } + } } }