From 86a2d963ad4bb11873dc8dc3376573d771795563 Mon Sep 17 00:00:00 2001 From: Sale Djenic Date: Tue, 11 Oct 2022 14:08:01 +0200 Subject: [PATCH] chore(@desktop/keycard): appropriate margin set for title for all views in settings --- ui/app/AppLayouts/Profile/views/SettingsContentBase.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Profile/views/SettingsContentBase.qml b/ui/app/AppLayouts/Profile/views/SettingsContentBase.qml index 2002490d65..85e96a8527 100644 --- a/ui/app/AppLayouts/Profile/views/SettingsContentBase.qml +++ b/ui/app/AppLayouts/Profile/views/SettingsContentBase.qml @@ -55,7 +55,9 @@ Item { RowLayout { id: titleRow - width: visible ? root.contentWidth : 0 + anchors.left: parent.left + anchors.leftMargin: Style.current.padding + width: visible ? root.contentWidth - Style.current.padding : 0 height: visible ? d.titleRowHeight : 0 visible: root.sectionTitle !== ""