feat(settings): slide background with the clock and calendar

This commit is contained in:
2026-02-10 14:54:13 +01:00
parent 82e4867a5e
commit 624b026ed3

View File

@@ -1,9 +1,11 @@
<script setup lang="ts">
const { onRender } = useScreen();
const store = useSettingsStore();
const { assets } = useAssets();
onRender((ctx) => {
ctx.translate(0, -16 + store.notificationYOffset / 3);
assets.images.home.topScreen.background.draw(ctx, 0, 0);
});