Merge pull request #629 from jonathanKingston/assignment-confirm-alignment
Fixing alignment of checkbox on confirm screen. Fixes #607
This commit is contained in:
commit
8c92d8ef5d
2 changed files with 9 additions and 1 deletions
|
@ -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>
|
||||
|
|
|
@ -71,3 +71,8 @@ dfn {
|
|||
.button-container > button {
|
||||
min-inline-size: 240px;
|
||||
}
|
||||
|
||||
.check-label {
|
||||
align-items: center;
|
||||
display: flex;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue