diff --git a/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletForm.ui.qml b/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletForm.ui.qml
index b0d3e6083a13de18e00a359fd7d5de5c9c230845..2fdaefcdd663c6e9b706ee94c1774c9b0ce01052 100644
--- a/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletForm.ui.qml
+++ b/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletForm.ui.qml
@@ -17,7 +17,7 @@ DapUiQmlScreen {
 
     Rectangle {
         id: nameWalletTextArea
-        height: 30
+        height: 30 * pt
         color: "#757184"
         anchors.right: parent.right
         anchors.left: parent.left
diff --git a/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletHeader.qml b/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletHeader.qml
index 8219bbc708c1500bba680b40dbbd31314d834eee..3bb7c7ba9fd682c179271f59fbf03a4fd07746ba 100644
--- a/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletHeader.qml
+++ b/CellFrameDashboardGUI/screen/LastAction/DapUiQmlScreenDialogAddWalletHeader.qml
@@ -13,17 +13,18 @@ DapUiQmlScreen {
     property string backButtonHovered : "qrc:/res/icons/close_icon_hover.png"
     property string title : qsTr("New wallet")
     property alias mouseArea : mouseArea
+    property alias pressedCloseAddWallet: mouseArea.pressed
 
     RowLayout
     {
         anchors.verticalCenter: parent.verticalCenter
         anchors.left: parent.left
-        anchors.leftMargin: 8
-        spacing: 12
+        anchors.leftMargin: 8 * pt
+        spacing: 12 * pt
 
         Rectangle {
-            width: 16
-            height: 16
+            width: 16 * pt
+            height: 16 * pt
             color: "transparent"
 
             Image {
diff --git a/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBar.qml b/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBar.qml
index f5ece439a9c4c20415f827310d6f9d4ab76aac4c..1bc7287374e5a26aeb9ce34ed4925126628ede0a 100644
--- a/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBar.qml
+++ b/CellFrameDashboardGUI/screen/StatusBar/DapUiQmlWidgetStatusBar.qml
@@ -78,7 +78,14 @@ Rectangle {
             onClicked: {
                 rightPanel.header.push("qrc:/screen/LastAction/DapUiQmlScreenDialogAddWalletHeader.qml", {"rightPanel": rightPanel});
                 rightPanel.content.push("qrc:/screen/LastAction/DapUiQmlScreenDialogAddWallet.qml", {"rightPanel": rightPanel});
+                statusBarAddWalletButton.backgroundColor = "#D51F5D"
+            }
+
+            Connections {
+                target: rightPanel.header.currentItem
+                onPressedCloseAddWalletChanged: statusBarAddWalletButton.backgroundColor = "#070023"
             }
         }
+
     }
 }