diff --git a/app/src/main/res/layout/chat_bubble_meeting_invite_content.xml b/app/src/main/res/layout/chat_bubble_meeting_invite_content.xml
index 58224cc19..f4e228041 100644
--- a/app/src/main/res/layout/chat_bubble_meeting_invite_content.xml
+++ b/app/src/main/res/layout/chat_bubble_meeting_invite_content.xml
@@ -190,13 +190,15 @@
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
+ android:layout_marginBottom="10dp"
android:text="@{model.meetingDescription, default=`Meeting with John Doe.`}"
android:textSize="12sp"
android:textColor="?attr/color_main2_500"
android:visibility="@{model.meetingDescription.length() > 0 ? View.VISIBLE : View.GONE, default=gone}"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toBottomOf="@id/description_title"/>
+ app:layout_constraintTop_toBottomOf="@id/description_title"
+ app:layout_constraintBottom_toTopOf="@id/join"/>
+ app:layout_constraintTop_toTopOf="@id/join"
+ app:layout_constraintBottom_toBottomOf="@id/join"/>