feat(settings): intro and outro animation

This commit is contained in:
2026-02-05 20:44:19 +01:00
parent 3e934540eb
commit 7bd88d6660
10 changed files with 306 additions and 52 deletions

View File

@@ -1,13 +1,14 @@
<script setup lang="ts">
const { onRender } = useScreen();
const store = useSettingsStore();
const { assets } = useAssets();
onRender((ctx) => {
ctx.fillStyle = "black";
ctx.font = "7px NDS7";
ctx.translate(0, -16);
ctx.translate(0, -16 + store.notificationYOffset / 3);
const CALENDAR_COLS = 7;
const CALENDAR_ROWS = 5;