mirror of
https://github.com/kunkunsh/kunkun.git
synced 2025-04-04 14:46:42 +00:00
style: disable window decoration and fixed a flex box issue from unocss
This commit is contained in:
parent
c7003326db
commit
292d03a51e
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@kksh/desktop",
|
||||
"version": "0.1.10",
|
||||
"version": "0.1.11",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
@ -14,8 +14,10 @@
|
||||
"windows": [
|
||||
{
|
||||
"hiddenTitle": true,
|
||||
"title": "Kunkun",
|
||||
"width": 800,
|
||||
"height": 600
|
||||
"height": 600,
|
||||
"decorations": false
|
||||
}
|
||||
],
|
||||
"security": {
|
||||
|
@ -13,7 +13,6 @@
|
||||
size="icon"
|
||||
onclick={goBack}
|
||||
class="absolute left-2 top-2"
|
||||
data-tauri-drag-region
|
||||
>
|
||||
<ArrowLeft class="size-4" />
|
||||
</Button>
|
||||
|
@ -21,18 +21,18 @@
|
||||
} = $props()
|
||||
</script>
|
||||
|
||||
<flex
|
||||
<div
|
||||
data-tauri-drag-region
|
||||
class={cn("h-12 select-none items-center justify-between gap-4 border-t px-2", className)}
|
||||
class={cn("flex select-none items-center justify-between gap-4 border-t px-2", className)}
|
||||
>
|
||||
<Avatar.Root class="p-1.5">
|
||||
<Avatar.Root class="pointer-events-none p-1.5">
|
||||
<Avatar.Image
|
||||
src="/favicon.png"
|
||||
alt="Kunkun Logo"
|
||||
class="h-full select-none invert dark:invert-0"
|
||||
/>
|
||||
</Avatar.Root>
|
||||
<flex class="items-center gap-1">
|
||||
<div class="flex items-center gap-1">
|
||||
{#if defaultAction}
|
||||
<Button size="default" class="h-full" variant="ghost" onclick={onDefaultActionSelected}>
|
||||
{defaultAction}
|
||||
@ -42,5 +42,5 @@
|
||||
{#if actionPanel}
|
||||
<ActionPanel {actionPanel} {onActionSelected} />
|
||||
{/if}
|
||||
</flex>
|
||||
</flex>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user