diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-12-19 13:11:01 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2019-12-19 15:18:09 +0100 |
commit | 15b64c6abb0f83eab4e87695952b1355f270c02f (patch) | |
tree | 60813b78c3c81a8c7bed1e4f8474af2997ed10d3 /apps/workflowengine/src/components | |
parent | 46931c98a7a93d073729036dd6f5513e91d6d3df (diff) | |
download | nextcloud-server-15b64c6abb0f83eab4e87695952b1355f270c02f.tar.gz nextcloud-server-15b64c6abb0f83eab4e87695952b1355f270c02f.zip |
Fix action listing alignment
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/src/components')
-rw-r--r-- | apps/workflowengine/src/components/Operation.vue | 8 | ||||
-rw-r--r-- | apps/workflowengine/src/components/Workflow.vue | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/apps/workflowengine/src/components/Operation.vue b/apps/workflowengine/src/components/Operation.vue index 269dce69613..47a40eca950 100644 --- a/apps/workflowengine/src/components/Operation.vue +++ b/apps/workflowengine/src/components/Operation.vue @@ -4,9 +4,11 @@ <div class="actions__item__description"> <h3>{{ operation.name }}</h3> <small>{{ operation.description }}</small> - <button v-if="colored"> - {{ t('workflowengine', 'Add new flow') }} - </button> + <div> + <button v-if="colored"> + {{ t('workflowengine', 'Add new flow') }} + </button> + </div> </div> <div class="actions__item_options"> <slot /> diff --git a/apps/workflowengine/src/components/Workflow.vue b/apps/workflowengine/src/components/Workflow.vue index 8166a6abcef..d94d2bf90a5 100644 --- a/apps/workflowengine/src/components/Workflow.vue +++ b/apps/workflowengine/src/components/Workflow.vue @@ -108,7 +108,7 @@ export default { .actions { display: flex; flex-wrap: wrap; - max-width: 900px; + max-width: 1200px; .actions__item { max-width: 280px; flex-basis: 250px; |