fix(StatusAppNavBar): fix profile icon bottom margin
it should be 24px from the bottom according to the design
This commit is contained in:
parent
3954d49266
commit
39c1ba4e66
|
@ -169,6 +169,6 @@ Rectangle {
|
||||||
width: visible? statusAppNavBar.navBarProfileButton.width : 0
|
width: visible? statusAppNavBar.navBarProfileButton.width : 0
|
||||||
visible: !!statusAppNavBar.navBarProfileButton
|
visible: !!statusAppNavBar.navBarProfileButton
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: visible ? 32 : 0
|
anchors.bottomMargin: visible ? 24 : 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue