Section: shrink icon-to-text spacing to 5dp (-3dp from previous 8dp)

This commit is contained in:
another-simple-pixel
2026-05-17 07:43:42 -07:00
parent 6a898550c1
commit c6f85c68fd
@@ -343,7 +343,7 @@ fun SectionBottomSpacer() {
@Composable
fun TextIconSpaced(extraPadding: Boolean = false) {
Spacer(Modifier.padding(horizontal = if (extraPadding) 17.dp else DEFAULT_PADDING_HALF - 2.dp))
Spacer(Modifier.padding(horizontal = if (extraPadding) 17.dp else 5.dp))
}
@Composable