Fix margin for tree view buttons (#15117)

This commit is contained in:
Azri Kahar
2022-08-17 22:14:26 +08:00
committed by GitHub
parent b1449dd1cc
commit 608596f382
2 changed files with 8 additions and 12 deletions

View File

@@ -141,16 +141,4 @@ const fields = computed(() => {
margin-left: 24px;
padding-left: 0;
}
.actions {
margin-top: 12px;
}
.actions .v-button + .v-button {
margin-left: 12px;
}
.existing {
margin-left: 12px;
}
</style>

View File

@@ -311,4 +311,12 @@ function addNew(item: Record<string, any>) {
background-color: var(--primary-alt);
box-shadow: 0 !important;
}
.actions {
margin-top: 12px;
}
.actions .v-button + .v-button {
margin-left: 12px;
}
</style>