fix(settings): fix alignment issues in number input
This commit is contained in:
@@ -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"
|
||||
/>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user