mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-10 04:22:13 +10:00
fixed some of quexeky's BASED design decisions
This commit is contained in:
2
app.vue
2
app.vue
@ -44,7 +44,7 @@ listen("auth/failed", () => {
|
||||
});
|
||||
|
||||
listen("auth/finished", () => {
|
||||
router.push("/");
|
||||
router.push("/store");
|
||||
});
|
||||
|
||||
useHead({
|
||||
|
||||
@ -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">
|
||||
|
||||
@ -5,10 +5,6 @@
|
||||
</button>
|
||||
</template>
|
||||
<script setup lang="ts">
|
||||
definePageMeta({
|
||||
layout: "mini",
|
||||
});
|
||||
|
||||
import { invoke } from "@tauri-apps/api/core";
|
||||
|
||||
async function requestGame() {
|
||||
|
||||
Reference in New Issue
Block a user