fixed some of quexeky's BASED design decisions

This commit is contained in:
DecDuck
2024-10-20 20:55:37 +11:00
parent d21b1d2857
commit 7e3da04beb
3 changed files with 5 additions and 9 deletions

View File

@ -44,7 +44,7 @@ listen("auth/failed", () => {
});
listen("auth/finished", () => {
router.push("/");
router.push("/store");
});
useHead({

View File

@ -1,11 +1,10 @@
<template>
<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()"
class="flex flex-row grow items-center justify-between pl-5 pr-2 py-3">
<div class="flex flex-row grow items-center pl-5 pr-2 py-3">
<div class="inline-flex items-center gap-x-10">
<NuxtLink to="/">
<NuxtLink to="/store">
<Wordmark class="h-8 mb-0.5"/>
</NuxtLink>
<nav class="inline-flex items-center mt-0.5">
@ -25,6 +24,7 @@
</ol>
</nav>
</div>
<div @mousedown="() => window.startDragging()" class="flex cursor-pointer grow h-full" />
<div class="inline-flex items-center">
<ol class="inline-flex gap-3">
<li v-for="(item, itemIdx) in quickActions">

View File

@ -5,10 +5,6 @@
</button>
</template>
<script setup lang="ts">
definePageMeta({
layout: "mini",
});
import { invoke } from "@tauri-apps/api/core";
async function requestGame() {