diff --git a/ui/app/AppLayouts/Profile/Sections/DevicesContainer.qml b/ui/app/AppLayouts/Profile/Sections/DevicesContainer.qml index 11ea34dfb6..5e39def6fe 100644 --- a/ui/app/AppLayouts/Profile/Sections/DevicesContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/DevicesContainer.qml @@ -15,24 +15,12 @@ Item { Layout.fillHeight: true Layout.fillWidth: true - StyledText { - id: sectionTitle - //% "Devices" - text: qsTrId("devices") - anchors.left: parent.left - anchors.leftMargin: 24 - anchors.top: parent.top - anchors.topMargin: 24 - font.weight: Font.Bold - font.pixelSize: 20 - } - Item { id: firstTimeSetup anchors.left: syncContainer.left anchors.leftMargin: Style.current.padding - anchors.top: sectionTitle.bottom - anchors.topMargin: Style.current.padding + anchors.top: parent.top + anchors.topMargin: 24 anchors.right: syncContainer.right anchors.rightMargin: Style.current.padding visible: !profileModel.devices.isSetup @@ -67,7 +55,7 @@ Item { id: advertiseDeviceItem anchors.left: syncContainer.left anchors.leftMargin: Style.current.padding - anchors.top: sectionTitle.bottom + anchors.top: parent.bottom anchors.topMargin: Style.current.padding anchors.right: syncContainer.right anchors.rightMargin: Style.current.padding diff --git a/ui/app/AppLayouts/Profile/Sections/Ens/Welcome.qml b/ui/app/AppLayouts/Profile/Sections/Ens/Welcome.qml index a5b1c13418..1bc7f7b47c 100644 --- a/ui/app/AppLayouts/Profile/Sections/Ens/Welcome.qml +++ b/ui/app/AppLayouts/Profile/Sections/Ens/Welcome.qml @@ -8,24 +8,13 @@ import "../../../../../shared/status" Item { signal startBtnClicked() - StyledText { - id: sectionTitle - text: "" - anchors.left: parent.left - anchors.leftMargin: 24 - anchors.top: parent.top - anchors.topMargin: 24 - font.weight: Font.Bold - font.pixelSize: 20 - } - ScrollView { id: sview clip: true ScrollBar.horizontal.policy: ScrollBar.AlwaysOff contentHeight: contentItem.childrenRect.height - anchors.top: sectionTitle.bottom - anchors.topMargin: Style.current.padding + anchors.top: parent.top + anchors.topMargin: 24 anchors.bottom: startBtn.top anchors.bottomMargin: Style.current.padding anchors.left: parent.left diff --git a/ui/app/AppLayouts/Profile/Sections/LanguageContainer.qml b/ui/app/AppLayouts/Profile/Sections/LanguageContainer.qml index a91aa514ce..8537501660 100644 --- a/ui/app/AppLayouts/Profile/Sections/LanguageContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/LanguageContainer.qml @@ -13,23 +13,12 @@ Item { Item { width: contentMaxWidth anchors.horizontalCenter: parent.horizontalCenter - StyledText { - id: title - //% "Language settings" - text: qsTrId("language-settings") - anchors.left: parent.left - anchors.leftMargin: 24 - anchors.top: parent.top - anchors.topMargin: 24 - font.weight: Font.Bold - font.pixelSize: 20 - } RowLayout { property string currentLocale: appSettings.locale id: languageSetting - anchors.top: title.bottom - anchors.topMargin: 20 + anchors.top: parent.top + anchors.topMargin: 24 anchors.left: parent.left anchors.leftMargin: 24 StyledText { diff --git a/ui/app/AppLayouts/Profile/Sections/SoundsContainer.qml b/ui/app/AppLayouts/Profile/Sections/SoundsContainer.qml index 9b17c6f561..c0c2e556ec 100644 --- a/ui/app/AppLayouts/Profile/Sections/SoundsContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/SoundsContainer.qml @@ -13,21 +13,10 @@ Item { Item { width: contentMaxWidth anchors.horizontalCenter: parent.horizontalCenter - StyledText { - id: element5 - //% "Sounds settings" - text: qsTrId("sounds-settings") - anchors.left: parent.left - anchors.leftMargin: 24 - anchors.top: parent.top - anchors.topMargin: 24 - font.weight: Font.Bold - font.pixelSize: 20 - } StyledText { id: labelVolume - anchors.top: element5.bottom + anchors.top: parent.top anchors.topMargin: Style.current.bigPadding anchors.left: parent.left anchors.leftMargin: 24 diff --git a/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml b/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml index 51d8d81593..f08729e071 100644 --- a/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml +++ b/ui/app/AppLayouts/Profile/Sections/SyncContainer.qml @@ -13,17 +13,6 @@ Item { Item { width: contentMaxWidth anchors.horizontalCenter: parent.horizontalCenter - StyledText { - id: element4 - //% "Sync settings" - text: qsTrId("sync-settings") - anchors.left: parent.left - anchors.leftMargin: 24 - anchors.top: parent.top - anchors.topMargin: 24 - font.weight: Font.Bold - font.pixelSize: 20 - } Component { id: mailserversList @@ -43,8 +32,8 @@ Item { id: addMailserver width: parent.width height: addButton.height - anchors.top: element4.bottom - anchors.topMargin: Style.current.padding + anchors.top: parent.top + anchors.topMargin: 24 anchors.left: parent.left anchors.leftMargin: 24