Fixing alignment of checkbox on confirm screen. Fixes #607
This commit is contained in:
parent
6292d9b25d
commit
a8cac47125
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>
|
<p>Would you still like to open in this current container?</p>
|
||||||
<br />
|
<br />
|
||||||
<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 />
|
<br />
|
||||||
<div class="button-container">
|
<div class="button-container">
|
||||||
<button id="deny" class="button">Open in <dfn id="current-container-name">Current</dfn> Container</button>
|
<button id="deny" class="button">Open in <dfn id="current-container-name">Current</dfn> Container</button>
|
||||||
|
|
|
@ -71,3 +71,8 @@ dfn {
|
||||||
.button-container > button {
|
.button-container > button {
|
||||||
min-inline-size: 240px;
|
min-inline-size: 240px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.check-label {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue