From f0000f50174da8472684bc20bbadf01b81aebdfc Mon Sep 17 00:00:00 2001 From: Penar Musaraj Date: Mon, 19 Apr 2021 09:23:41 -0400 Subject: [PATCH] UX: Mobile styling for discard draft modal buttons (#12735) Co-authored-by: Kris --- app/assets/stylesheets/mobile/modal.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/app/assets/stylesheets/mobile/modal.scss b/app/assets/stylesheets/mobile/modal.scss index 9f52d92778f..e235e9ca6d3 100644 --- a/app/assets/stylesheets/mobile/modal.scss +++ b/app/assets/stylesheets/mobile/modal.scss @@ -109,3 +109,17 @@ .modal .modal-body.reorder-categories { max-height: calc(100vh - 220px); } + +.discard-draft-modal { + .modal-inner-container { + width: 250px; + } + .modal-footer { + justify-content: center; + flex-flow: column nowrap; + align-items: stretch; + .btn { + margin-right: 0; + } + } +}