update
This commit is contained in:
parent
d95c9618a7
commit
6202f9fdb8
|
|
@ -781,17 +781,36 @@ include 'static.php';
|
||||||
|
|
||||||
/* checkbox block */
|
/* checkbox block */
|
||||||
.wrap .checkbox {
|
.wrap .checkbox {
|
||||||
display: flex;
|
display: grid;
|
||||||
gap: 10px;
|
grid-template-columns: 20px 1fr;
|
||||||
margin-top: 18px;
|
column-gap: 12px;
|
||||||
align-items: flex-start;
|
margin-top: 20px;
|
||||||
|
align-items: start;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* checkbox */
|
||||||
.wrap .checkbox input {
|
.wrap .checkbox input {
|
||||||
margin-top: 4px;
|
margin-top: 3px;
|
||||||
|
width: 18px;
|
||||||
|
height: 18px;
|
||||||
accent-color: #38bdf8;
|
accent-color: #38bdf8;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* text block */
|
||||||
|
.wrap .checkbox label {
|
||||||
|
margin: 0;
|
||||||
|
font-weight: 700;
|
||||||
|
line-height: 1.45;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* description under label */
|
||||||
|
.wrap .checkbox .muted {
|
||||||
|
margin-top: 4px;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.45;
|
||||||
|
}
|
||||||
|
|
||||||
/* links */
|
/* links */
|
||||||
.wrap .links {
|
.wrap .links {
|
||||||
margin-top: 14px;
|
margin-top: 14px;
|
||||||
|
|
|
||||||
|
|
@ -145,7 +145,9 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
||||||
|
|
||||||
<div class="field">
|
<div class="field">
|
||||||
<label>Confirm New Password</label>
|
<label>Confirm New Password</label>
|
||||||
<input type="password" name="confirm_password">
|
<div class="pass-wrap">
|
||||||
|
<input type="password" name="confirm_password">
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<button type="submit">Update</button>
|
<button type="submit">Update</button>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue