Reduced dialogs corner size

This commit is contained in:
Abdelilah El Aissaoui 2023-04-17 01:41:55 +02:00
parent 552ac17d0e
commit a64ee57283
No known key found for this signature in database
GPG Key ID: 7587FC860F594869

View File

@ -74,8 +74,8 @@ fun MaterialDialog(
) {
Box(
modifier = Modifier
.border(1.dp, MaterialTheme.colors.onBackground.copy(alpha = 0.1f), RoundedCornerShape(16.dp))
.clip(RoundedCornerShape(16.dp))
.border(1.dp, MaterialTheme.colors.onBackground.copy(alpha = 0.1f), RoundedCornerShape(8.dp))
.clip(RoundedCornerShape(8.dp))
.background(background)
.padding(
horizontal = paddingHorizontal,