From b6eebda17708a4a2fa6cd6521d21a2937238600f Mon Sep 17 00:00:00 2001 From: tiny-craft <137850705+tiny-craft@users.noreply.github.com> Date: Fri, 27 Oct 2023 16:41:27 +0800 Subject: [PATCH] style: update style of browser tabs style: update style of connection dialog --- frontend/src/AppContent.vue | 13 ++++--- .../src/components/content/ContentPane.vue | 6 +--- .../components/content/ContentValueTab.vue | 35 ++++++++----------- .../content_value/ContentServerStatus.vue | 4 +-- .../components/dialogs/ConnectionDialog.vue | 19 +++++----- .../src/components/sidebar/BrowserPane.vue | 11 +----- frontend/src/utils/rgb.js | 23 ++++++++++++ 7 files changed, 59 insertions(+), 52 deletions(-) diff --git a/frontend/src/AppContent.vue b/frontend/src/AppContent.vue index cb716a4..3ffa147 100644 --- a/frontend/src/AppContent.vue +++ b/frontend/src/AppContent.vue @@ -79,6 +79,10 @@ const border = computed(() => { return `1px solid ${color}` }) +const logoWrapperWidth = computed(() => { + return `${data.navMenuWidth + prefStore.behavior.asideWidth - 4}px` +}) + const borderRadius = ref(10) const logoPaddingLeft = ref(10) const maximised = ref(false) @@ -148,7 +152,8 @@ onMounted(async () => {