diff --git a/concrete/src/main/kotlin/glass/yasan/concrete/component/Switch.kt b/concrete/src/main/kotlin/glass/yasan/concrete/component/Switch.kt index fb24760..c82a6cb 100644 --- a/concrete/src/main/kotlin/glass/yasan/concrete/component/Switch.kt +++ b/concrete/src/main/kotlin/glass/yasan/concrete/component/Switch.kt @@ -45,6 +45,7 @@ public fun Switch( text = title, color = ConcreteTheme.colors.content.major, fontSize = 16.sp, + modifier = Modifier.padding(vertical = 1.grid) ) }, description = description?.let { @@ -53,6 +54,7 @@ public fun Switch( text = it, color = ConcreteTheme.colors.content.minor, fontSize = 14.sp, + modifier = Modifier.padding(bottom = 1.grid) ) } },