diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-26 15:10:12 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-09-26 15:10:12 +0700 |
commit | 24bfec230e5ab25a50e5d6876719e538191d0be4 (patch) | |
tree | d0ce893b8fa7331ca9638783870521b173743024 /features | |
parent | c09d129ea53dfc267a808dd15667453eb9177e57 (diff) |
reduce sizes and margin
Diffstat (limited to 'features')
-rw-r--r-- | features/TaskDetailForm.ui.qml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/features/TaskDetailForm.ui.qml b/features/TaskDetailForm.ui.qml index d231f5a..20e11c9 100644 --- a/features/TaskDetailForm.ui.qml +++ b/features/TaskDetailForm.ui.qml @@ -40,7 +40,7 @@ Page { RowLayout { id: taskTitleLayout - height: taskTitle.height + 16 + 5 + height: taskTitle.height + 16 + 3 anchors.top: parent.top anchors.topMargin: 0 anchors.right: parent.right @@ -63,13 +63,13 @@ Page { RowLayout { id: taskDescriptionLayout width: parent.width - height: taskDescription.height + 16 + 5 + height: taskDescription.height + 16 + 3 anchors.horizontalCenter: parent.horizontalCenter anchors.top: taskTitleLayout.bottom anchors.topMargin: 24 Image { id: descriptionIcon - Layout.topMargin: 22 + Layout.topMargin: 20 Layout.alignment: Qt.AlignLeft | Qt.AlignTop sourceSize.height: 24 sourceSize.width: 24 @@ -83,6 +83,8 @@ Page { } TextField { id: taskDescription + font.family: "Google Sans" + font.pixelSize: 16 Layout.rightMargin: 16 Layout.leftMargin: 24 Layout.fillWidth: true |