Made corners more round

This commit is contained in:
Mathieu 2022-01-03 22:19:26 +01:00
parent 8349e7739d
commit 71e01bb79b

View File

@ -5,7 +5,7 @@ import androidx.compose.material.Shapes
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
val Shapes = Shapes( val Shapes = Shapes(
small = RoundedCornerShape(6.dp), small = RoundedCornerShape(12.dp),
medium = RoundedCornerShape(12.dp), medium = RoundedCornerShape(14.dp),
large = RoundedCornerShape(0.dp) large = RoundedCornerShape(20.dp)
) )