Index: sources/gui/qml/pages/treatment/sections/TreatmentVitals.qml =================================================================== diff -u -rab7efbd73d4a4c0a0a10886629f9a5975ca08315 -rdff9d50ebfa80ec99313586e1d48662b72940d24 --- sources/gui/qml/pages/treatment/sections/TreatmentVitals.qml (.../TreatmentVitals.qml) (revision ab7efbd73d4a4c0a0a10886629f9a5975ca08315) +++ sources/gui/qml/pages/treatment/sections/TreatmentVitals.qml (.../TreatmentVitals.qml) (revision dff9d50ebfa80ec99313586e1d48662b72940d24) @@ -30,9 +30,10 @@ readonly property string bloodSDSeparator: " / " header.title: qsTr("Vitals" ) + contentArea.anchors.topMargin: Variables.defaultMargin contentItem: Column { id: _content - spacing : Variables.defaultMargin * 4 + spacing : Variables.defaultMargin * 4.5 LabelValue { id: _bloodPressure height: 40 @@ -41,6 +42,9 @@ topTextFont.weight: Font.Bold topText: Variables.notSetVariable(vTreatmentVitals.systolic, 2) + bloodSDSeparator + Variables.notSetVariable(vTreatmentVitals.diastolic, 2) bottomText: Variables.unitTextBloodPressure + bottomTextFont.pixelSize: 20 + bottomTextFont.weight: Font.Light + bottomTextTopMargin: 10 } LabelValue { id: _heartBeat @@ -50,14 +54,17 @@ topTextFont.weight: Font.Bold topText: Variables.notSetVariable(vTreatmentVitals.heartRate, 2) bottomText: Variables.unitTextHeartBeat + bottomTextFont.pixelSize: 20 + bottomTextFont.weight: Font.Light + bottomTextTopMargin: 10 } Label { id: _lastRecorded height: 30 width: contentItem.width text: qsTr("Last Recorded: " ) font.pixelSize: 18 - font.weight: Font.Light + font.weight: Font.Normal verticalAlignment: Text.AlignBottom } }