Skip to content

Commit d35a16e

Browse files
committed
Fixed padding
1 parent f2e0c29 commit d35a16e

File tree

1 file changed

+2
-2
lines changed
  • profile/src/main/java/no/nordicsemi/android/toolbox/profile/view/uart

1 file changed

+2
-2
lines changed

profile/src/main/java/no/nordicsemi/android/toolbox/profile/view/uart/OutputSection.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ internal fun OutputSection(
6262
title = "Messages",
6363
modifier = Modifier
6464
.fillMaxWidth()
65-
.padding(8.dp),
65+
.padding(16.dp),
6666
menu = { Menu(onEvent) }
6767
)
6868

@@ -76,7 +76,7 @@ internal fun OutputSection(
7676
LazyColumn(
7777
state = listState,
7878
modifier = Modifier
79-
.padding(8.dp)
79+
.padding(16.dp)
8080
.heightIn(max = 500.dp), // Set a fixed height for the message area
8181
verticalArrangement = Arrangement.spacedBy(8.dp)
8282
) {

0 commit comments

Comments
 (0)