Merge pull request #629 from jonathanKingston/assignment-confirm-alignment

Fixing alignment of checkbox on confirm screen. Fixes #607
This commit is contained in:
luke crouch 2017-06-22 09:49:49 -05:00 committed by GitHub
commit 8c92d8ef5d
2 changed files with 9 additions and 1 deletions

View file

@ -18,7 +18,10 @@
<p>Would you still like to open in this current container?</p>
<br />
<br />
<input id="never-ask" type="checkbox" /><label for="never-ask">Remember my decision for this site</label>
<label for="never-ask" class="check-label">
<input id="never-ask" type="checkbox" />
Remember my decision for this site
</label>
<br />
<div class="button-container">
<button id="deny" class="button">Open in <dfn id="current-container-name">Current</dfn> Container</button>

View file

@ -71,3 +71,8 @@ dfn {
.button-container > button {
min-inline-size: 240px;
}
.check-label {
align-items: center;
display: flex;
}