Limit max width of blurb

pull/1359/head
Loren Burkholder 2 years ago
parent 707af2c11d
commit 1f8777178e
  1. 3
      resources/qml/delegates/EncryptionEnabled.qml

@ -14,7 +14,8 @@ Rectangle {
required property string username
radius: fontMetrics.lineSpacing / 2 + Nheko.paddingMedium
width: parent.width ? parent.width : 0
width: parent.width ? Math.min(parent.width, 700) : 0
anchors.horizontalCenter: parent.horizontalCenter
height: contents.implicitHeight + Nheko.paddingMedium * 2
color: Nheko.colors.alternateBase
border.color: Nheko.theme.green

Loading…
Cancel
Save