Skip to content

Commit

Permalink
Increase padding for the increase text command visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKun21 committed Aug 27, 2024
1 parent 32b4886 commit 9991792
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ fun SkillHistory(vm: SkillMakerViewModel) {
.let {
if (isSelected) {
it.border(
2.dp,
width = 2.dp,
color = colorResource(android.R.color.darker_gray),
shape = shape
)
Expand All @@ -301,7 +301,10 @@ fun SkillHistory(vm: SkillMakerViewModel) {

Text(
text,
color = Color.White
color = Color.White,
modifier = Modifier.padding(
all = 4.dp
)
)
}
}
Expand Down

0 comments on commit 9991792

Please sign in to comment.