Skip to content

Commit

Permalink
fix: activation modal width change when activation succeeds (#69)
Browse files Browse the repository at this point in the history
* style: fix width mismatch when storage form is activated

* style: fix weird left paddings in activate modal
  • Loading branch information
karrui authored Aug 4, 2020
1 parent bf0cca8 commit b90be6f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions src/public/modules/forms/admin/css/view-responses.css
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,6 @@
#secret-key .instructions-caption {
margin-top: 15px;
margin-bottom: 15px;
padding-left: 16px;
text-align: center;
}

Expand Down Expand Up @@ -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;
Expand Down Expand Up @@ -366,9 +365,8 @@
}

#secret-key #enter-secret-key input {
width: 513px;
height: 54px;
margin: 0 10px;
margin-right: 10px;
}

#secret-key .input-acknowledgement {
Expand Down Expand Up @@ -418,7 +416,6 @@

#secret-key .instructions {
text-align: left;
padding-left: 16px;
}

#secret-key .warning-acknowledgement {
Expand All @@ -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);
}
}

Expand Down

0 comments on commit b90be6f

Please sign in to comment.