From a087cecb5c13ba85b7b2af122956a349b0faabec Mon Sep 17 00:00:00 2001 From: Mraveux Date: Sun, 24 Nov 2024 21:38:17 -0600 Subject: [PATCH] StalledAlert: left align on mobile --- src/App.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.vue b/src/App.vue index 77690bf9b..7b1e35f0d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -401,12 +401,18 @@ export default defineComponent({ @media (max-width: 751px) { /* When notice text breaks into two lines */ #app.consensus-stalled { padding-top: 6.75rem; + .red-notice { + text-align: left; + } } } @media (max-width: 418px) { /* When notice text breaks into three lines */ #app.consensus-stalled { padding-top: 9.125rem; + .red-notice { + text-align: left; + } } }