mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-25 17:24:48 +10:00
Merge remote-tracking branch 'origin/downloads' into downloads
This commit is contained in:
+1
-1
@@ -44,7 +44,7 @@ listen("auth/failed", () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
listen("auth/finished", () => {
|
listen("auth/finished", () => {
|
||||||
router.push("/");
|
router.push("/store");
|
||||||
});
|
});
|
||||||
|
|
||||||
useHead({
|
useHead({
|
||||||
|
|||||||
@@ -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">
|
||||||
|
|||||||
@@ -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() {
|
||||||
|
|||||||
Reference in New Issue
Block a user