Skip to content

Commit

Permalink
Fix horizontal margin for several quiz types
Browse files Browse the repository at this point in the history
  • Loading branch information
XanderZhu committed Nov 6, 2023
1 parent eb72603 commit 7bad798
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginHorizontal="@dimen/step_quiz_content_padding_horizontal"
android:layout_marginTop="@dimen/step_quiz_content_padding_top"
android:layout_marginBottom="@dimen/step_quiz_content_padding_bottom"
app:layout_constraintBottom_toTopOf="@id/stepQuizStatistics"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginHorizontal="@dimen/step_quiz_content_padding_horizontal"
android:layout_marginTop="@dimen/step_quiz_content_padding_top"
android:layout_marginBottom="@dimen/step_quiz_content_padding_bottom"
app:layout_constraintVertical_bias="0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginHorizontal="@dimen/step_quiz_content_padding_horizontal"
android:layout_marginTop="@dimen/step_quiz_content_padding_top"
android:layout_marginBottom="@dimen/step_quiz_content_padding_bottom"
app:layout_constraintBottom_toTopOf="@id/stepQuizStatistics"
Expand Down
1 change: 1 addition & 0 deletions androidHyperskillApp/src/main/res/values/dimens.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
<dimen name="item_choice_skeleton_height">21dp</dimen>
<dimen name="step_quiz_content_padding_top">12dp</dimen>
<dimen name="step_quiz_content_padding_bottom">20dp</dimen>
<dimen name="step_quiz_content_padding_horizontal">20dp</dimen>
<dimen name="step_quiz_collapsible_block_header_height">48dp</dimen>
<dimen name="step_quiz_description_padding_top">16dp</dimen>
<dimen name="step_quiz_hints_top_margin">20dp</dimen>
Expand Down

0 comments on commit 7bad798

Please sign in to comment.