Skip to content

Commit 56dfcff

Browse files
committed
fix: height of selector
1 parent 8a736f8 commit 56dfcff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

infrastructure/eid-wallet/src/lib/ui/Selector/Selector.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ let {
3030
{...restProps}
3131
for={id}
3232
class={cn(
33-
["flex w-full justify-between items-center ps-[5vw] py-4", restProps.class].join(
33+
["flex w-full justify-between items-center ps-[5vw] py-6", restProps.class].join(
3434
" "
3535
)
3636
)}

infrastructure/eid-wallet/src/routes/(app)/settings/pin/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ $effect(() => {
2525
<p class="mb-[1vh]">Confirm new PIN</p>
2626
<InputPin bind:pin={repeatPin} variant="sm"/>
2727
</div>
28-
<p class={`small text-danger mt-[3.4vh] ${isError ? "block" : "hidden"}`}>Your PIN does not match, try again.</p>
28+
<p class={`text-danger mt-[3.4vh] ${isError ? "block" : "hidden"}`}>Your PIN does not match, try again.</p>
2929
</main>

0 commit comments

Comments
 (0)