Skip to content

Commit 7e12e84

Browse files
committed
fix: areas around target not clickable.
1 parent 129f8a4 commit 7e12e84

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/lib/components/heading.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</svelte:element>
2525

2626
<style>
27-
.target {
27+
.target:target {
2828
padding-top: 120px;
2929
margin-top: -120px;
3030
}

src/routes/(console)/project-[project]/auth/security/updatePasswordHistory.svelte

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
}
3737
}
3838
39-
let maxSessionInputField: InputNumber | null = null;
39+
let maxPasswordInputField: InputNumber | null = null;
4040
41-
$: if (passwordHistoryEnabled && maxSessionInputField) {
41+
$: if (passwordHistoryEnabled && maxPasswordInputField) {
4242
tick().then(() => {
43-
maxSessionInputField.addInputFocus();
43+
maxPasswordInputField.addInputFocus();
4444
});
4545
}
4646
</script>
@@ -66,9 +66,9 @@
6666
<InputNumber
6767
max={20}
6868
min={1}
69-
id="max-session"
69+
id="max-passwords"
7070
label="Limit"
71-
bind:this={maxSessionInputField}
71+
bind:this={maxPasswordInputField}
7272
disabled={!passwordHistoryEnabled}
7373
bind:value={passwordHistory} />
7474
</FormList>

0 commit comments

Comments
 (0)