From cb13839f952b7d3d0954cddd09bc859549dfdf20 Mon Sep 17 00:00:00 2001 From: Mikhail Rogachev Date: Wed, 3 Aug 2022 12:44:35 +0300 Subject: [PATCH] fix(StatusCommunityTag): Polish text and icon sizings (#824) --- ui/StatusQ/src/StatusQ/Controls/StatusCommunityTag.qml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/StatusQ/src/StatusQ/Controls/StatusCommunityTag.qml b/ui/StatusQ/src/StatusQ/Controls/StatusCommunityTag.qml index f5ebe71c68..ef2624515b 100644 --- a/ui/StatusQ/src/StatusQ/Controls/StatusCommunityTag.qml +++ b/ui/StatusQ/src/StatusQ/Controls/StatusCommunityTag.qml @@ -33,6 +33,8 @@ Rectangle { anchors.centerIn: parent StatusEmoji { + width: 18 + height: 18 emojiId: root.emoji != "" ? Emoji.iconHex(root.emoji) : "" anchors.verticalCenter: parent.verticalCenter } @@ -44,7 +46,9 @@ Rectangle { StatusBaseText { anchors.verticalCenter: parent.verticalCenter - font.pixelSize: 13 + font.pixelSize: 15 + font.weight: Font.DemiBold + font.capitalization: Font.AllLowercase color: root.enabled ? Theme.palette.primaryColor1 : Theme.palette.baseColor1 text: root.name }