Skip to content

Commit

Permalink
fix(downloads): add space between anime name and team name
Browse files Browse the repository at this point in the history
  • Loading branch information
urFate committed Dec 29, 2024
1 parent 4ca8925 commit 674edbd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ fun DownloadsSavedScreen(model: DownloadsViewModel = hiltViewModel()) {
.fillMaxWidth()
) {
Row(
verticalAlignment = Alignment.CenterVertically
verticalAlignment = Alignment.CenterVertically,
horizontalArrangement = Arrangement.spacedBy(4.dp)
) {
Text(
modifier = Modifier.weight(weight = 1f, fill = false),
Expand Down

0 comments on commit 674edbd

Please sign in to comment.