From 9b85f235399a339cfab58ad7c34377eb70efda31 Mon Sep 17 00:00:00 2001 From: vfsfitvnm Date: Wed, 27 Jul 2022 19:22:35 +0200 Subject: [PATCH] Fix SettingsScreen imperfections --- .../it/vfsfitvnm/vimusic/ui/screens/SettingsScreen.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/SettingsScreen.kt b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/SettingsScreen.kt index 1a24f1d..12e20a3 100644 --- a/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/SettingsScreen.kt +++ b/app/src/main/kotlin/it/vfsfitvnm/vimusic/ui/screens/SettingsScreen.kt @@ -99,7 +99,7 @@ fun SettingsScreen() { BasicText( text = "Settings", - style = typography.m.semiBold, + style = typography.l.semiBold, modifier = Modifier .padding(start = 48.dp) .padding(all = 16.dp) @@ -157,7 +157,7 @@ fun SettingsScreen() { BasicText( text = description, style = typography.xs.secondary.medium, - maxLines = 1 + maxLines = 2 ) } @@ -184,7 +184,7 @@ fun SettingsScreen() { color = colorPalette.magenta, icon = R.drawable.color_palette, title = "Appearance", - description = "Change the colors and shapes of the app", + description = "Change the colors and shapes", route = appearanceSettingsRoute, ) @@ -208,7 +208,7 @@ fun SettingsScreen() { color = colorPalette.orange, icon = R.drawable.save, title = "Backup & Restore", - description = "Backup and restore the app database", + description = "Backup and restore the database", route = backupAndRestoreRoute )