Skip to content

Commit 53a4994

Browse files
wip
1 parent 18a943d commit 53a4994

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Library/lib/src/commonMain/kotlin/ui/component/RequestItem.kt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package ui.component
33
import androidx.compose.foundation.clickable
44
import androidx.compose.foundation.layout.*
55
import androidx.compose.material3.LocalContentColor
6+
import androidx.compose.material3.MaterialTheme
67
import androidx.compose.material3.Text
78
import androidx.compose.runtime.Composable
89
import 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
}

Library/lib/src/commonMain/kotlin/ui/pane/RequestPane.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)