mirror of
https://github.com/bitwarden/android.git
synced 2024-11-21 17:05:44 +03:00
PM-13300 Adjust size and padding modifier order where needed. (#4050)
This commit is contained in:
parent
b5658fda42
commit
5e7dc26837
2 changed files with 4 additions and 4 deletions
|
@ -38,8 +38,8 @@ fun SearchEmptyContent(
|
||||||
contentDescription = null,
|
contentDescription = null,
|
||||||
tint = BitwardenTheme.colorScheme.icon.primary,
|
tint = BitwardenTheme.colorScheme.icon.primary,
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(74.dp)
|
.padding(horizontal = 16.dp)
|
||||||
.padding(horizontal = 16.dp),
|
.size(74.dp),
|
||||||
)
|
)
|
||||||
|
|
||||||
Spacer(modifier = Modifier.height(24.dp))
|
Spacer(modifier = Modifier.height(24.dp))
|
||||||
|
|
|
@ -325,8 +325,8 @@ private fun QrCodeSquare(
|
||||||
) {
|
) {
|
||||||
Canvas(
|
Canvas(
|
||||||
modifier = Modifier
|
modifier = Modifier
|
||||||
.size(squareOutlineSize)
|
.padding(8.dp)
|
||||||
.padding(8.dp),
|
.size(squareOutlineSize),
|
||||||
) {
|
) {
|
||||||
val strokeWidth = 3.dp.toPx()
|
val strokeWidth = 3.dp.toPx()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue