From 734605aec77f8644dd9b4b0cefd1a5b2d9b993f7 Mon Sep 17 00:00:00 2001 From: Robert Kossessa Date: Fri, 2 Feb 2024 00:13:22 +0100 Subject: [PATCH] UPD: Sizing to fit fixed window --- src/App.vue | 2 +- src/components/Navbar.vue | 15 ++++++++++----- src/components/config/ConfigPane.vue | 4 ++-- src/components/device/DevicePreview.vue | 8 ++++---- src/components/profile/ProfileManager.vue | 8 ++++---- src/main.js | 5 +++-- 6 files changed, 24 insertions(+), 18 deletions(-) diff --git a/src/App.vue b/src/App.vue index e9684f0..0af71ea 100644 --- a/src/App.vue +++ b/src/App.vue @@ -27,7 +27,7 @@ onMounted(() => {
+ class="basis-1/3 min-w-60 flex-1 flex flex-col border-solid border-0 border-r bg-zinc-900 bg-opacity-30" /> diff --git a/src/components/Navbar.vue b/src/components/Navbar.vue index da2374b..35400c9 100644 --- a/src/components/Navbar.vue +++ b/src/components/Navbar.vue @@ -57,19 +57,21 @@ -
+
@@ -90,9 +92,12 @@ import { import ScrambleText from '@/components/effects/ScrambleText.vue' import { X, Square, Minus } from 'lucide-vue-next' import { Button } from '@/components/ui/button' +import { ref } from 'vue' const oi = (msg) => alert(msg) +const resizeable = ref(false) +