From 86804a6de9a527d0c28c7151a1bb1189ef15a5b6 Mon Sep 17 00:00:00 2001 From: Shengyou Fan Date: Thu, 24 Aug 2023 16:55:10 +0800 Subject: [PATCH] add padding around platform details --- .../samples/standalone/customs/ui/PlatformsTabContent.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/samples/standalone/src/main/kotlin/org/jetbrains/jewel/samples/standalone/customs/ui/PlatformsTabContent.kt b/samples/standalone/src/main/kotlin/org/jetbrains/jewel/samples/standalone/customs/ui/PlatformsTabContent.kt index d18a3c3e5..55027b2a5 100644 --- a/samples/standalone/src/main/kotlin/org/jetbrains/jewel/samples/standalone/customs/ui/PlatformsTabContent.kt +++ b/samples/standalone/src/main/kotlin/org/jetbrains/jewel/samples/standalone/customs/ui/PlatformsTabContent.kt @@ -16,7 +16,10 @@ fun PlatformsTabContent(supportedPlatforms: List) { Column(verticalArrangement = Arrangement.spacedBy(SpacingInnerElements())) { PlatformChips(supportedPlatforms, Modifier.padding(8.dp)) } - Column(verticalArrangement = Arrangement.spacedBy(SpacingInnerElements())) { + Column( + modifier = Modifier.padding(15.dp), + verticalArrangement = Arrangement.spacedBy(SpacingInnerElements()) + ) { PlatformDetails(supportedPlatforms) } }