FIX: Close button

This commit is contained in:
Robert Kossessa
2024-02-02 02:08:22 +01:00
parent eedaed9411
commit 47c5a78b5f
2 changed files with 4 additions and 19 deletions

View File

@@ -60,19 +60,17 @@
<div class="flex h-full">
<button
v-if="resizeable"
class="grow flex justify-center items-center app-titlebar-button hover:text-white px-2"
@click="window.app.minimize">
class="grow flex justify-center items-center app-titlebar-button hover:text-white px-2">
<Minus class="h-5 w-5" />
</button>
<button
v-if="resizeable"
class="grow flex justify-center items-center app-titlebar-button hover:text-white px-2"
@click="window.app.maximize">
class="grow flex justify-center items-center app-titlebar-button hover:text-white px-2">
<Square class="h-3.5 w-3.5 mr-0.5" />
</button>
<button
class="grow flex justify-center items-center app-titlebar-button hover:text-white px-2"
@click="window.app.close">
@click="window.close">
<X class="h-5 w-5 mr-0.5" />
</button>
</div>