summaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-10-01 17:42:30 +0200
committerGitHub <noreply@github.com>2022-10-01 17:42:30 +0200
commit35eb8b0b4a6f01760e069f1bceded65485e21480 (patch)
tree7ca453dcf205ca520b5118ded341e1268549b1e0 /src/components
parent7ef036cd52d1f6d380960fce2dd5bbdd33fdc512 (diff)
parente8d8a28e01f86af4fbe0e15d0bad674b9b26b51c (diff)
Merge pull request #2983 from nextcloud/enh/noid/org-chart-height
Fix height of the org-chart
Diffstat (limited to 'src/components')
-rw-r--r--src/components/OrgChart.vue6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/components/OrgChart.vue b/src/components/OrgChart.vue
index 5ee199c1..d7c62cc2 100644
--- a/src/components/OrgChart.vue
+++ b/src/components/OrgChart.vue
@@ -163,6 +163,7 @@ export default {
.org-chart {
display: flex;
flex-direction: column;
+ height: 100%;
&__menu {
display: flex;
@@ -180,6 +181,11 @@ export default {
&__container {
display: flex;
background-color: var(--color-main-background);
+ height: 100%;
+
+ svg {
+ height: 100%;
+ }
}
.node-button-div {