diff --git a/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml b/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
index b29c9a0cb5654cbe332296f7462eef171fe696f1..971b3a38a36226e1c258ad9d25f5f4d910588eb1 100644
--- a/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
+++ b/Corona-Warn-App/src/main/res/layout/fragment_submission_dispatcher.xml
@@ -107,7 +107,7 @@
                     layout="@layout/include_dispatcher_card"
                     android:layout_width="0dp"
                     android:layout_height="wrap_content"
-                    android:layout_marginTop="@dimen/spacing_normal"
+                    android:layout_marginTop="16dp"
                     android:layout_marginBottom="@dimen/spacing_normal"
                     android:clickable="true"
                     android:focusable="true"
diff --git a/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml b/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
index d2a3907c5506158b2d26d2d037fe2d87be67dbe1..6c000385c32526f7ea110b55e222eaf77987537e 100644
--- a/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
+++ b/Corona-Warn-App/src/main/res/layout/include_dispatcher_card.xml
@@ -73,15 +73,17 @@
             app:layout_constraintVertical_bias="0.0"
             tools:text="@string/submission_dispatcher_qr_card_text" />
 
-        <ImageView
+        <com.google.android.material.imageview.ShapeableImageView
             android:id="@+id/dispatcher_card_illustration"
             android:layout_width="wrap_content"
+            app:shapeAppearanceOverlay="@style/dispatcherImageStyle"
             android:layout_height="wrap_content"
             android:layout_marginTop="@dimen/button_icon_margin"
             android:src="@{illustration}"
             android:importantForAccessibility="no"
             app:layout_constraintBottom_toBottomOf="parent"
             app:layout_constraintEnd_toEndOf="parent"
+            app:layout_constraintVertical_bias="1.0"
             app:layout_constraintTop_toBottomOf="@+id/dispatcher_card_icon"
             tools:src="@drawable/ic_submission_illustration_qr_code_card" />
 
diff --git a/Corona-Warn-App/src/main/res/values/styles.xml b/Corona-Warn-App/src/main/res/values/styles.xml
index 9057e165ea3fbaeb5a065de08e39a199c39b23f7..f9da4f1b3890a684198013169a70e7ea7143b9c3 100644
--- a/Corona-Warn-App/src/main/res/values/styles.xml
+++ b/Corona-Warn-App/src/main/res/values/styles.xml
@@ -261,6 +261,11 @@
         <item name="android:background">@drawable/grey_card_ripple</item>
     </style>
 
+    <style name="dispatcherImageStyle">
+        <item name="cornerFamily">rounded</item>
+        <item name="cornerSizeBottomRight">@dimen/radius_card</item>
+    </style>
+
     <style name="BlueCard">
         <item name="android:background">@drawable/blue_card_ripple</item>
     </style>