fix(StatusAppNavBar): fix profile icon bottom margin

it should be 24px from the bottom according to the design
This commit is contained in:
Lukáš Tinkl 2022-07-26 09:46:35 +02:00 committed by r4bbit.eth
parent 3954d49266
commit 39c1ba4e66
1 changed files with 1 additions and 1 deletions

View File

@ -169,6 +169,6 @@ Rectangle {
width: visible? statusAppNavBar.navBarProfileButton.width : 0
visible: !!statusAppNavBar.navBarProfileButton
anchors.bottom: parent.bottom
anchors.bottomMargin: visible ? 32 : 0
anchors.bottomMargin: visible ? 24 : 0
}
}