From 0cf4862229187ddcdf6c644810f4cbf921c765f6 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sun, 30 Jul 2023 17:03:53 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20no=20more=20scroll=20for?= =?UTF-8?q?=20features?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vscode/settings.json | 21 ++++++++++++++++++++- src/modules/feature/FeatureStep.vue | 2 +- src/modules/feature/FeatureSteps.vue | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9340183..564ee4f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,23 @@ { "typescript.tsdk": "node_modules/typescript/lib", - "peacock.color": "#002992" + "peacock.color": "#002992", + "workbench.colorCustomizations": { + "activityBar.activeBackground": "#0037c5", + "activityBar.background": "#0037c5", + "activityBar.foreground": "#e7e7e7", + "activityBar.inactiveForeground": "#e7e7e799", + "activityBarBadge.background": "#200009", + "activityBarBadge.foreground": "#e7e7e7", + "commandCenter.border": "#e7e7e799", + "sash.hoverBorder": "#0037c5", + "statusBar.background": "#002992", + "statusBar.foreground": "#e7e7e7", + "statusBarItem.hoverBackground": "#0037c5", + "statusBarItem.remoteBackground": "#002992", + "statusBarItem.remoteForeground": "#e7e7e7", + "titleBar.activeBackground": "#002992", + "titleBar.activeForeground": "#e7e7e7", + "titleBar.inactiveBackground": "#00299299", + "titleBar.inactiveForeground": "#e7e7e799" + } } diff --git a/src/modules/feature/FeatureStep.vue b/src/modules/feature/FeatureStep.vue index fa02c80..de29640 100644 --- a/src/modules/feature/FeatureStep.vue +++ b/src/modules/feature/FeatureStep.vue @@ -119,7 +119,7 @@ const binContainerWidth = computed(() => { flex: 1; display: flex; flex-direction: column; - overflow-y: auto; + overflow-y: hidden; max-height: 40vh; } diff --git a/src/modules/feature/FeatureSteps.vue b/src/modules/feature/FeatureSteps.vue index dcd6128..500c057 100644 --- a/src/modules/feature/FeatureSteps.vue +++ b/src/modules/feature/FeatureSteps.vue @@ -33,7 +33,7 @@ onMounted(() => featureStore.initBoard(NUMBER_OF_FEATURES)) align-items: stretch; margin: 0 1rem; border: 3px solid var(--primary-color); - height: 60vh; + height: 80vh; width: 100%; overflow-y: hidden;