fix(settings): fix alignment issues in number input

This commit is contained in:
2026-01-21 13:52:39 +01:00
parent 14a4705498
commit 3ce2b116c6
3 changed files with 19 additions and 11 deletions

View File

@@ -21,7 +21,9 @@ const handleConfirm = () => {
};
onRender((ctx) => {
assets.images.settings.bottomScreen.clock.timeColon.draw(ctx, 113, 62);
assets.images.home.topScreen.background.draw(ctx, 0, 0);
assets.images.settings.bottomScreen.clock.timeColon.draw(ctx, 112, 63);
});
defineOptions({ render: () => null });
@@ -31,13 +33,13 @@ defineOptions({ render: () => null });
<NumberInput
:model-value="now.getHours()"
title="Hour"
:x="4 * 16"
:x="4 * 16 - 1"
:disabled="true"
/>
<NumberInput
:model-value="now.getMinutes()"
title="Minute"
:x="9 * 16"
:x="9 * 16 - 1"
:disabled="true"
/>