Skip to content

Commit

Permalink
[UI/#36] 홈뷰 UI 수정사항 대응
Browse files Browse the repository at this point in the history
  • Loading branch information
Marchbreeze committed Jul 11, 2024
1 parent b7ac233 commit 4ba0c43
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions presentation/src/main/res/drawable/ic_add.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
android:pathData="M0,5.7L12,5.7"
android:strokeWidth="0.6"
android:fillColor="#00000000"
android:strokeColor="#ffffff"/>
android:strokeColor="#000000"/>
<path
android:pathData="M5.7,12L5.7,0"
android:strokeWidth="0.6"
android:fillColor="#00000000"
android:strokeColor="#ffffff"/>
android:strokeColor="#000000"/>
</vector>
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@color/button_blue" />
<solid android:color="@color/main_yellow" />
<corners
android:radius="100dp" />
</shape>
5 changes: 2 additions & 3 deletions presentation/src/main/res/layout/fragment_home.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
android:layout_height="wrap_content"
android:layout_marginEnd="20dp"
android:layout_marginBottom="37dp"
android:background="@drawable/shape_blue_fill_100_rect"
android:background="@drawable/shape_yellow_fill_100_rect"
android:orientation="horizontal"
android:padding="15dp"
app:layout_constraintBottom_toBottomOf="parent"
Expand All @@ -91,8 +91,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="3dp"
android:text="@string/home_btn_sell"
android:textColor="@color/white" />
android:text="@string/home_btn_sell"/>

</LinearLayout>

Expand Down
2 changes: 1 addition & 1 deletion presentation/src/main/res/layout/item_home_product.xml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
android:fontFamily="@font/font_pretendard_medium"
android:textColor="@color/black"
android:textSize="10sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintBottom_toBottomOf="@id/tv_home_item_now_price"
app:layout_constraintEnd_toEndOf="parent"
tools:text="@string/ex_item_like" />

Expand Down
1 change: 1 addition & 0 deletions presentation/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

<!--Brand Color -->
<color name="main_blue">#57CBE4</color>
<color name="main_yellow">#FFE500</color>
<color name="deep_blue">#034EE1</color>
<color name="btn_blue">#3527D7</color>
<color name="seg_red">#FF6C6C</color>
Expand Down

0 comments on commit 4ba0c43

Please sign in to comment.