summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-10-01 18:02:42 +0200
committerGitHub <noreply@github.com>2022-10-01 18:02:42 +0200
commit388a9e9e2441cd1e322419ce2141452834e926ce (patch)
treef61c1a9c22fa79f48837ba8f9151a0991fa0c223
parent34b79520633f16374ebf6d1957cc50cd7ecbf400 (diff)
parent13d045fafd0435face16e72b5b1d7b43140257f9 (diff)
Merge pull request #3006 from nextcloud/backport/2983/stable5.0
[stable5.0] Fix height of the org-chart
-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 d9a6a6cf..ddc6c59a 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%;
+ }
}
::v-deep .node-button-div {