Skip to content

Commit

Permalink
fix: design review fixes (#63)
Browse files Browse the repository at this point in the history
design review fixes
  • Loading branch information
migulyaev authored Sep 21, 2023
1 parent d863e0f commit ffdec42
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ fun LetroOutlinedTextField(
singleLine = singleLine,
isError = isError,
enabled = isEnabled,
colors = TextFieldDefaults.colors(
errorIndicatorColor = MaterialTheme.colorScheme.error,
),
)
if (content != null) {
content()
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/tech/relaycorp/letro/ui/theme/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ val Secondary1 = Color(0xFF00034F)
val Secondary2 = Color(0xFF64B5FF)
val Secondary5 = Color(0xFFD1E4FF)
val Error1 = Color(0xFFBA1A1A)
val Error2 = Color(0xFFFFC4C4)
val Error2 = Color(0xFFFFB9B9)
val Neutral2 = Color(0xFF0C1B44)
val Neutral3 = Color(0xFF5A6688)
val Neutral4 = Color(0xFF6D7B9E)
Expand Down
5 changes: 2 additions & 3 deletions app/src/main/java/tech/relaycorp/letro/ui/theme/Type.kt
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,8 @@ val Typography.LabelLargeProminent: TextStyle
get() = TextStyle(
fontFamily = Inter,
fontWeight = FontWeight.SemiBold,
fontSize = 16.sp,
lineHeight = 20.sp,
letterSpacing = 0.1.sp,
fontSize = 15.sp,
lineHeight = 21.sp,
)

val Typography.LabelMediumProminent: TextStyle
Expand Down

0 comments on commit ffdec42

Please sign in to comment.