Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

fixed missing border spacing #433

Merged
merged 1 commit into from
Jun 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,9 @@
android:layout_marginTop="@dimen/spacing_small"
app:layout_constraintEnd_toStartOf="@+id/guideline_card_end"
app:layout_constraintStart_toStartOf="@+id/guideline_card_start"
app:layout_constraintTop_toBottomOf="@+id/main_barrier" />
app:layout_constraintTop_toBottomOf="@+id/main_barrier"
app:layout_constraintBottom_toBottomOf="@+id/guideline_bottom"
app:layout_constraintVertical_bias="0.0"/>

<include layout="@layout/merge_guidelines_side" />

Expand Down
4 changes: 3 additions & 1 deletion Corona-Warn-App/src/main/res/layout/fragment_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,9 @@
android:layout_marginTop="@dimen/spacing_small"
app:layout_constraintEnd_toStartOf="@+id/guideline_card_end"
app:layout_constraintStart_toStartOf="@+id/guideline_card_start"
app:layout_constraintTop_toBottomOf="@+id/main_barrier" />
app:layout_constraintTop_toBottomOf="@+id/main_barrier"
app:layout_constraintBottom_toBottomOf="@+id/guideline_bottom"
app:layout_constraintVertical_bias="0.0"/>

<include layout="@layout/merge_guidelines_side" />

Expand Down