diff --git a/resources/qml/delegates/Pill.qml b/resources/qml/delegates/Pill.qml
index 23a69b1082cf4389ca48fba741c97197c9818da5..226771419cb5bc78dd3eb860b9d6ec4424571de0 100644
--- a/resources/qml/delegates/Pill.qml
+++ b/resources/qml/delegates/Pill.qml
@@ -8,11 +8,11 @@ Label {
 	color: colors.brightText
 	horizontalAlignment: Text.AlignHCenter
 
-    height: fontMetrics.height * 1.4
-    width: contentWidth * 1.2
-
+	height: contentHeight * 1.2
+	width: contentWidth * 1.2
 	background: Rectangle {
 		radius: parent.height / 2
 		color: Qt.rgba(userColor.r, userColor.g, userColor.b, 0.2)
 	}
+
 }