From b90be6f01f69fa1079f2f8f80677d296f5c0354f Mon Sep 17 00:00:00 2001 From: Kar Rui Lau Date: Tue, 4 Aug 2020 14:25:17 +0800 Subject: [PATCH] fix: activation modal width change when activation succeeds (#69) * style: fix width mismatch when storage form is activated * style: fix weird left paddings in activate modal --- .../modules/forms/admin/css/view-responses.css | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/public/modules/forms/admin/css/view-responses.css b/src/public/modules/forms/admin/css/view-responses.css index f3bdd0e038..46978472b5 100644 --- a/src/public/modules/forms/admin/css/view-responses.css +++ b/src/public/modules/forms/admin/css/view-responses.css @@ -253,7 +253,6 @@ #secret-key .instructions-caption { margin-top: 15px; margin-bottom: 15px; - padding-left: 16px; text-align: center; } @@ -327,9 +326,9 @@ display: -webkit-box; display: -ms-flexbox; display: flex; - -webkit-box-pack: center; - -ms-flex-pack: center; - justify-content: center; + -webkit-box-pack: justify; + -ms-flex-pack: justify; + justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; @@ -366,9 +365,8 @@ } #secret-key #enter-secret-key input { - width: 513px; height: 54px; - margin: 0 10px; + margin-right: 10px; } #secret-key .input-acknowledgement { @@ -418,7 +416,6 @@ #secret-key .instructions { text-align: left; - padding-left: 16px; } #secret-key .warning-acknowledgement { @@ -434,10 +431,7 @@ @media (min-width: 576px) { #secret-key .instructions-container { - width: min-content; - } - #secret-key .input-acknowledgement { - margin: 10px 10px 0; + width: calc(100% - 115px); } }