Skip to content

Commit 132bb0c

Browse files
committed
RTL Spotless workflow fixed.
1 parent 8af63fc commit 132bb0c

File tree

1 file changed

+16
-16
lines changed
  • core/designsystem/src/main/kotlin/com/google/samples/apps/nowinandroid/core/designsystem/theme

1 file changed

+16
-16
lines changed

core/designsystem/src/main/kotlin/com/google/samples/apps/nowinandroid/core/designsystem/theme/Type.kt

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import androidx.compose.ui.text.font.FontWeight
2222
import androidx.compose.ui.text.style.LineHeightStyle
2323
import androidx.compose.ui.text.style.LineHeightStyle.Alignment
2424
import androidx.compose.ui.text.style.LineHeightStyle.Trim
25-
import androidx.compose.ui.text.style.TextDirection
2625
import androidx.compose.ui.text.style.TextAlign
26+
import androidx.compose.ui.text.style.TextDirection
2727
import androidx.compose.ui.unit.sp
2828

2929
/**
@@ -36,39 +36,39 @@ internal val NiaTypography = Typography(
3636
lineHeight = 64.sp,
3737
letterSpacing = (-0.25).sp,
3838
textDirection = TextDirection.Ltr,
39-
textAlign = TextAlign.Left
39+
textAlign = TextAlign.Left,
4040
),
4141
displayMedium = TextStyle(
4242
fontWeight = FontWeight.Normal,
4343
fontSize = 45.sp,
4444
lineHeight = 52.sp,
4545
letterSpacing = 0.sp,
4646
textDirection = TextDirection.Ltr,
47-
textAlign = TextAlign.Left
47+
textAlign = TextAlign.Left,
4848
),
4949
displaySmall = TextStyle(
5050
fontWeight = FontWeight.Normal,
5151
fontSize = 36.sp,
5252
lineHeight = 44.sp,
5353
letterSpacing = 0.sp,
5454
textDirection = TextDirection.Ltr,
55-
textAlign = TextAlign.Left
55+
textAlign = TextAlign.Left,
5656
),
5757
headlineLarge = TextStyle(
5858
fontWeight = FontWeight.Normal,
5959
fontSize = 32.sp,
6060
lineHeight = 40.sp,
6161
letterSpacing = 0.sp,
6262
textDirection = TextDirection.Ltr,
63-
textAlign = TextAlign.Left
63+
textAlign = TextAlign.Left,
6464
),
6565
headlineMedium = TextStyle(
6666
fontWeight = FontWeight.Normal,
6767
fontSize = 28.sp,
6868
lineHeight = 36.sp,
6969
letterSpacing = 0.sp,
7070
textDirection = TextDirection.Ltr,
71-
textAlign = TextAlign.Left
71+
textAlign = TextAlign.Left,
7272
),
7373
headlineSmall = TextStyle(
7474
fontWeight = FontWeight.Normal,
@@ -80,7 +80,7 @@ internal val NiaTypography = Typography(
8080
trim = Trim.None,
8181
),
8282
textDirection = TextDirection.Ltr,
83-
textAlign = TextAlign.Left
83+
textAlign = TextAlign.Left,
8484
),
8585
titleLarge = TextStyle(
8686
fontWeight = FontWeight.Bold,
@@ -92,23 +92,23 @@ internal val NiaTypography = Typography(
9292
trim = Trim.LastLineBottom,
9393
),
9494
textDirection = TextDirection.Ltr,
95-
textAlign = TextAlign.Left
95+
textAlign = TextAlign.Left,
9696
),
9797
titleMedium = TextStyle(
9898
fontWeight = FontWeight.Bold,
9999
fontSize = 18.sp,
100100
lineHeight = 24.sp,
101101
letterSpacing = 0.1.sp,
102102
textDirection = TextDirection.Ltr,
103-
textAlign = TextAlign.Left
103+
textAlign = TextAlign.Left,
104104
),
105105
titleSmall = TextStyle(
106106
fontWeight = FontWeight.Medium,
107107
fontSize = 14.sp,
108108
lineHeight = 20.sp,
109109
letterSpacing = 0.1.sp,
110110
textDirection = TextDirection.Ltr,
111-
textAlign = TextAlign.Left
111+
textAlign = TextAlign.Left,
112112
),
113113
// Default text style
114114
bodyLarge = TextStyle(
@@ -121,23 +121,23 @@ internal val NiaTypography = Typography(
121121
trim = Trim.None,
122122
),
123123
textDirection = TextDirection.Ltr,
124-
textAlign = TextAlign.Left
124+
textAlign = TextAlign.Left,
125125
),
126126
bodyMedium = TextStyle(
127127
fontWeight = FontWeight.Normal,
128128
fontSize = 14.sp,
129129
lineHeight = 20.sp,
130130
letterSpacing = 0.25.sp,
131131
textDirection = TextDirection.Ltr,
132-
textAlign = TextAlign.Left
132+
textAlign = TextAlign.Left,
133133
),
134134
bodySmall = TextStyle(
135135
fontWeight = FontWeight.Normal,
136136
fontSize = 12.sp,
137137
lineHeight = 16.sp,
138138
letterSpacing = 0.4.sp,
139139
textDirection = TextDirection.Ltr,
140-
textAlign = TextAlign.Left
140+
textAlign = TextAlign.Left,
141141
),
142142
// Used for Button
143143
labelLarge = TextStyle(
@@ -150,7 +150,7 @@ internal val NiaTypography = Typography(
150150
trim = Trim.LastLineBottom,
151151
),
152152
textDirection = TextDirection.Ltr,
153-
textAlign = TextAlign.Left
153+
textAlign = TextAlign.Left,
154154
),
155155
// Used for Navigation items
156156
labelMedium = TextStyle(
@@ -163,7 +163,7 @@ internal val NiaTypography = Typography(
163163
trim = Trim.LastLineBottom,
164164
),
165165
textDirection = TextDirection.Ltr,
166-
textAlign = TextAlign.Left
166+
textAlign = TextAlign.Left,
167167
),
168168
// Used for Tag
169169
labelSmall = TextStyle(
@@ -176,6 +176,6 @@ internal val NiaTypography = Typography(
176176
trim = Trim.LastLineBottom,
177177
),
178178
textDirection = TextDirection.Ltr,
179-
textAlign = TextAlign.Left
179+
textAlign = TextAlign.Left,
180180
),
181181
)

0 commit comments

Comments
 (0)