diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt index fc9a92a09..46f0a96f6 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/note/NoteCompose.kt @@ -2978,7 +2978,6 @@ fun DisplayEditStatus(editState: EditState) { style = LocalTextStyle.current.copy( color = MaterialTheme.colorScheme.placeholderText, - fontSize = Font14SP, fontWeight = FontWeight.Bold, ), maxLines = 1, diff --git a/app/src/main/java/com/vitorpamplona/amethyst/ui/theme/Shape.kt b/app/src/main/java/com/vitorpamplona/amethyst/ui/theme/Shape.kt index 29b1300ed..8b39b9e70 100644 --- a/app/src/main/java/com/vitorpamplona/amethyst/ui/theme/Shape.kt +++ b/app/src/main/java/com/vitorpamplona/amethyst/ui/theme/Shape.kt @@ -56,7 +56,7 @@ val EditFieldBorder = RoundedCornerShape(25.dp) val ChatBubbleShapeMe = RoundedCornerShape(15.dp, 15.dp, 3.dp, 15.dp) val ChatBubbleShapeThem = RoundedCornerShape(3.dp, 15.dp, 15.dp, 15.dp) -val StdButtonSizeModifier = Modifier.size(20.dp) +val StdButtonSizeModifier = Modifier.size(19.dp) val HalfVertSpacer = Modifier.height(2.dp)