From 71e01bb79badf5c101bf55e3bc8ba948a7e25c23 Mon Sep 17 00:00:00 2001 From: Mathieu Date: Mon, 3 Jan 2022 22:19:26 +0100 Subject: [PATCH] Made corners more round --- .../ch/mathieubroillet/jarvis/android/ui/theme/Shape.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/ch/mathieubroillet/jarvis/android/ui/theme/Shape.kt b/app/src/main/java/ch/mathieubroillet/jarvis/android/ui/theme/Shape.kt index ceff6af..f2371d7 100644 --- a/app/src/main/java/ch/mathieubroillet/jarvis/android/ui/theme/Shape.kt +++ b/app/src/main/java/ch/mathieubroillet/jarvis/android/ui/theme/Shape.kt @@ -5,7 +5,7 @@ import androidx.compose.material.Shapes import androidx.compose.ui.unit.dp val Shapes = Shapes( - small = RoundedCornerShape(6.dp), - medium = RoundedCornerShape(12.dp), - large = RoundedCornerShape(0.dp) + small = RoundedCornerShape(12.dp), + medium = RoundedCornerShape(14.dp), + large = RoundedCornerShape(20.dp) ) \ No newline at end of file