Merge remote-tracking branch 'origin/downloads' into downloads

This commit is contained in:
quexeky
2024-10-21 22:02:26 +11:00
3 changed files with 5 additions and 9 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ listen("auth/failed", () => {
}); });
listen("auth/finished", () => { listen("auth/finished", () => {
router.push("/"); router.push("/store");
}); });
useHead({ useHead({
+4 -4
View File
@@ -1,11 +1,10 @@
<template> <template>
<div <div
class="h-16 cursor-pointer bg-zinc-950 flex flex-row justify-between" class="h-16 bg-zinc-950 flex flex-row justify-between"
> >
<div @mousedown="() => window.startDragging()" <div class="flex flex-row grow items-center pl-5 pr-2 py-3">
class="flex flex-row grow items-center justify-between pl-5 pr-2 py-3">
<div class="inline-flex items-center gap-x-10"> <div class="inline-flex items-center gap-x-10">
<NuxtLink to="/"> <NuxtLink to="/store">
<Wordmark class="h-8 mb-0.5"/> <Wordmark class="h-8 mb-0.5"/>
</NuxtLink> </NuxtLink>
<nav class="inline-flex items-center mt-0.5"> <nav class="inline-flex items-center mt-0.5">
@@ -25,6 +24,7 @@
</ol> </ol>
</nav> </nav>
</div> </div>
<div @mousedown="() => window.startDragging()" class="flex cursor-pointer grow h-full" />
<div class="inline-flex items-center"> <div class="inline-flex items-center">
<ol class="inline-flex gap-3"> <ol class="inline-flex gap-3">
<li v-for="(item, itemIdx) in quickActions"> <li v-for="(item, itemIdx) in quickActions">
-4
View File
@@ -5,10 +5,6 @@
</button> </button>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
definePageMeta({
layout: "mini",
});
import { invoke } from "@tauri-apps/api/core"; import { invoke } from "@tauri-apps/api/core";
async function requestGame() { async function requestGame() {