Skip to content

Commit

Permalink
Merge pull request #282 from PermanentOrg/feature/VSP-1351
Browse files Browse the repository at this point in the history
Fixed custom checkbox height.
  • Loading branch information
flaviahandrea-vsp authored Jul 2, 2024
2 parents 14c617d + 3df0728 commit fe8334e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fun CustomCheckbox(

Row(
modifier = Modifier
.height(if (isTablet) 116.dp else 96.dp)
.height(if (isTablet) 116.dp else 100.dp)
.fillMaxWidth()
.border(1.dp, whiteTransparentColor, RoundedCornerShape(10.dp))
.background(
Expand Down

0 comments on commit fe8334e

Please sign in to comment.