summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDorraJaouad <dorra.jaoued7@gmail.com>2023-06-01 17:45:58 +0200
committerbackportbot-nextcloud[bot] <backportbot-nextcloud[bot]@users.noreply.github.com>2023-06-01 16:39:52 +0000
commit3967702e0e74ec5418e26b58067a72d06ae41511 (patch)
treed93eb24cc6778cb660fd8cb67cd5af550adc00fb /src
parent4ca23ad2b60cacc4f1b63229b7146a271bb32fe8 (diff)
Correct Font weight for Subtitle
Signed-off-by: DorraJaouad <dorra.jaoued7@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/components/LeftSidebar/ConversationsList/Conversation.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/LeftSidebar/ConversationsList/Conversation.vue b/src/components/LeftSidebar/ConversationsList/Conversation.vue
index d10761f0e..c1667a1cd 100644
--- a/src/components/LeftSidebar/ConversationsList/Conversation.vue
+++ b/src/components/LeftSidebar/ConversationsList/Conversation.vue
@@ -38,7 +38,8 @@
:disable-menu="true" />
</template>
<template #subtitle>
- <strong v-if="item.unreadMessages">
+ <strong v-if="item.unreadMessages"
+ class="subtitle">
{{ conversationInformation }}
</strong>
<template v-else>
@@ -448,6 +449,9 @@ export default {
</script>
<style lang="scss" scoped>
+.subtitle {
+ font-weight: bold;
+}
:deep(.action-text__title) {
margin-left: 12px;