File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Library/lib/src/commonMain/kotlin/ui Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ package ui.component
33import androidx.compose.foundation.clickable
44import androidx.compose.foundation.layout.*
55import androidx.compose.material3.LocalContentColor
6+ import androidx.compose.material3.MaterialTheme
67import androidx.compose.material3.Text
78import androidx.compose.runtime.Composable
89import androidx.compose.runtime.CompositionLocalProvider
@@ -163,6 +164,10 @@ fun StatusItem(
163164 Spacer (modifier = Modifier .width(4 .dp))
164165 Text (status)
165166 }
166- Text (text = executionTime, color = Color .White )
167+ Text (
168+ text = executionTime,
169+ color = Color .White ,
170+ style = MaterialTheme .typography.labelSmall
171+ )
167172 }
168173}
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ fun RequestPane(
133133 text = transaction.responseBody.orEmpty(),
134134 style = MaterialTheme .typography.bodySmall
135135 )
136- Spacer (modifier = Modifier .height(4 .dp))
136+ Spacer (modifier = Modifier .height(16 .dp))
137137 }
138138 }
139139 }
You can’t perform that action at this time.
0 commit comments