1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-09-20 09:27:44 +03:00

fix: Remove background for resource ownership selector (#4748)

This commit is contained in:
Alex Grozav 2022-11-29 11:03:55 +02:00 committed by GitHub
parent d6d442d458
commit 30214f2bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -150,7 +150,7 @@ export default Vue.extend({
height: 100%;
display: flex;
flex-direction: column;
background-color: var(--color-background-xlight);
background-color: var(--menu-background, var(--color-background-xlight));
}
.menuContent {

View File

@ -54,6 +54,7 @@ export default Vue.extend({
<style lang="scss" scoped>
.menu-container {
--menu-background: transparent;
--menu-padding: 0;
}
</style>