summaryrefslogtreecommitdiffstats
path: root/src/views
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2022-10-21 12:12:34 +0200
committerRichard Steinmetz <richard@steinmetz.cloud>2022-10-21 12:12:34 +0200
commit04c651d38e5174eef00f154676590640ee68f8b4 (patch)
treee89c01fbe4a58ffb26d8c3d5cbbd4beecee1d7b3 /src/views
parent181a80f5b059da8883582952d580b92974f88752 (diff)
Fix action icons in app navigation bar
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Contacts.vue11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index b1bd0727..fa6236de 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -31,8 +31,10 @@
:selected-contact="selectedContact">
<!-- new-contact-button -->
<Button v-if="!loadingContacts"
+ class="new-contact-button"
type="primary"
button-id="new-contact-button"
+ :wide="true"
:disabled="!defaultAddressbook"
@click="newContact">
<template #icon>
@@ -411,12 +413,9 @@ export default {
},
}
</script>
+
<style lang="scss" scoped>
-::v-deep .button-vue--vue-primary {
- width: 95%;
- margin: 7px;
-}
-::v-deep .button-vue__wrapper {
- margin-right: 125px;
+.new-contact-button {
+ justify-content: start !important;
}
</style>