fix: 🐛 no more scroll for features
This commit is contained in:
21
.vscode/settings.json
vendored
21
.vscode/settings.json
vendored
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ const binContainerWidth = computed(() => {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow-y: auto;
|
||||
overflow-y: hidden;
|
||||
max-height: 40vh;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user