From aab008d6ef7c4ccc93b046ea614aacebff4dc4c5 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Wed, 28 Apr 2021 14:15:58 -0400 Subject: [PATCH] fix(CreateCommunity): fix membership text color and spacing --- .../Chat/CommunityComponents/CreateCommunityPopup.qml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml b/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml index 6fd1817f7f..2c67a7ed45 100644 --- a/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml +++ b/ui/app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml @@ -48,9 +48,9 @@ ModalPopup { id: scrollView anchors.fill: parent rightPadding: Style.current.bigPadding - anchors.rightMargin: - Style.current.bigPadding + anchors.rightMargin: - Style.current.padding leftPadding: Style.current.bigPadding - anchors.leftMargin: - Style.current.bigPadding + anchors.leftMargin: - Style.current.padding contentHeight: content.height ScrollBar.horizontal.policy: ScrollBar.AlwaysOff ScrollBar.vertical.policy: ScrollBar.AlwaysOn @@ -62,7 +62,7 @@ ModalPopup { Item { id: content - height: childrenRect.height + height: childrenRect.height + 100 // Bottom padding width: parent.width Input { @@ -360,7 +360,9 @@ ModalPopup { anchors.top: membershipRequirementSetting.bottom wrapMode: Text.WordWrap anchors.topMargin: isEdit ? 0 : Style.current.halfPadding - width: parent.width + font.pixelSize: 13 + color: Style.current.secondaryText + width: parent.width * 0.78 text: qsTr("You can require new members to meet certain criteria before they can join. This can be changed at any time") }