From 26842d1b1b62f7435e0883a1cd56394ce4ee89b3 Mon Sep 17 00:00:00 2001 From: lightheel Date: Tue, 5 Aug 2025 19:55:36 -0400 Subject: [PATCH] Reduced attack button size. --- .../com/github/nacabaro/vbhelper/screens/BattlesScreen.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/com/github/nacabaro/vbhelper/screens/BattlesScreen.kt b/app/src/main/java/com/github/nacabaro/vbhelper/screens/BattlesScreen.kt index 763716e..891bd20 100644 --- a/app/src/main/java/com/github/nacabaro/vbhelper/screens/BattlesScreen.kt +++ b/app/src/main/java/com/github/nacabaro/vbhelper/screens/BattlesScreen.kt @@ -742,15 +742,15 @@ fun MiddleBattleView( }, enabled = battleSystem.isAttackButtonEnabled, modifier = Modifier - .fillMaxWidth() - .height(50.dp), + .fillMaxWidth(0.5f) + .height(35.dp), colors = ButtonDefaults.buttonColors( - containerColor = Color.Red, + containerColor = Color.Blue, disabledContainerColor = Color.Gray ), shape = RoundedCornerShape(8.dp) ) { - Text("Attack", color = Color.White, fontSize = 18.sp) + Text("Attack", color = Color.White, fontSize = 12.sp) } } }