Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/contacts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Properties/PropertyTitle.vue')
-rw-r--r--src/components/Properties/PropertyTitle.vue10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyTitle.vue b/src/components/Properties/PropertyTitle.vue
index c92a5414..d66df242 100644
--- a/src/components/Properties/PropertyTitle.vue
+++ b/src/components/Properties/PropertyTitle.vue
@@ -21,7 +21,8 @@
-->
<template>
- <h3 class="property__title property__row">
+ <h3 class="property__title property__row"
+ :class="{'align-to-actions': hasActions}">
<PropertyTitleIcon :icon="icon" />
<div class="property__value property__title--right">
{{ readableName }}
@@ -47,6 +48,10 @@ export default {
default: '',
required: true,
},
+ hasActions: {
+ type: Boolean,
+ default: false,
+ }
},
}
</script>
@@ -62,4 +67,7 @@ export default {
display: flex;
justify-content: space-between;
}
+.align-to-actions {
+ padding-bottom: 10px;
+}
</style>