Skip to content

Commit

Permalink
[AN/USER] fix: 학교 선택, 학교 인증 화면 다크모드 대응(#556) (#560)
Browse files Browse the repository at this point in the history
* fix: 학교 선택 화면 다크모드 대응

* fix: 인증 번호 확인 다크모드 적용

* fix: btnFesta 텍스트 색상 변경
  • Loading branch information
EmilyCh0 authored Oct 17, 2023
1 parent 13c5a4e commit e86c745
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="@string/select_school_tv_select_school"
android:textColor="@color/black"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintStart_toStartOf="parent"
Expand All @@ -70,7 +69,7 @@
android:singleLine="true" />
</com.google.android.material.textfield.TextInputLayout>

<Button
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btnVerificationConfirm"
style="@style/btnFesta"
visibility="@{uiState.shouldShowSuccess}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
app:layout_constraintTop_toTopOf="@+id/btnRequestVerificationCode"
tools:text="00:24" />

<Button
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/btnVerificationConfirm"
style="@style/btnFesta"
android:layout_width="0dp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@
android:id="@+id/tvItem"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="12dp"
android:textColor="@color/black" />
android:padding="12dp" />
2 changes: 1 addition & 1 deletion android/festago/app/src/main/res/values/style.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<style name="btnFesta">
<item name="android:textSize">20sp</item>
<item name="android:letterSpacing">0.01</item>
<item name="android:textColor">?attr/colorOnPrimary</item>
<item name="android:textColor">?attr/colorOnSecondary</item>
<item name="android:background">@drawable/btn_festa</item>
<item name="android:paddingVertical">@dimen/space</item>
</style>
Expand Down

0 comments on commit e86c745

Please sign in to comment.