diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6efb8e66..cd2427ee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: # ref. `pnpm@10.1.0` / `pnpm@9.15.4` cannot be installed due to key id mismatch · Issue #612 · nodejs/corepack # - https://github.com/nodejs/corepack/issues/612#issuecomment-2629496091 - run: npm i -g corepack@latest && corepack enable - - uses: actions/setup-node@v4.4.0 + - uses: actions/setup-node@v5.0.0 with: node-version-file: .nvmrc diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 46b26f81..6850c32a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 - name: Set node - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version-file: .nvmrc diff --git a/app/components/main/MainContent.vue b/app/components/main/MainContent.vue index 0c50edc3..8f45d773 100644 --- a/app/components/main/MainContent.vue +++ b/app/components/main/MainContent.vue @@ -30,12 +30,11 @@ const containerClass = computed(() => { sticky top-0 z-20 pt="[env(safe-area-inset-top,0)]" bg="[rgba(var(--rgb-bg-base),0.7)]" - class="native:lg:w-[calc(100vw-5rem)] native:xl:w-[calc(135%+(100vw-1200px)/2)]" :class="{ 'backdrop-blur': !getPreferences(userSettings, 'optimizeForLowPerformanceDevice'), }" > -
+
-
+
diff --git a/app/components/modal/DurationPicker.vue b/app/components/modal/DurationPicker.vue index 897dcd02..90614ae9 100644 --- a/app/components/modal/DurationPicker.vue +++ b/app/components/modal/DurationPicker.vue @@ -13,9 +13,9 @@ watchEffect(() => { } const duration - = days.value * 24 * 60 * 60 - + hours.value * 60 * 60 - + minutes.value * 60 + = days.value * 24 * 60 * 60 + + hours.value * 60 * 60 + + minutes.value * 60 if (duration <= 0) { isValid.value = false diff --git a/app/components/nav/NavTitle.vue b/app/components/nav/NavTitle.vue index 630f425c..10cbe768 100644 --- a/app/components/nav/NavTitle.vue +++ b/app/components/nav/NavTitle.vue @@ -18,7 +18,7 @@ router.afterEach(() => {