Index: sources/gui/qml/components/HeaderBar.qml =================================================================== diff -u -r6bff7fae4c7b28a493b5824598c669fa8ab920b3 -re7adb742d7dd362b2deb795259694b223eea3bc0 --- sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision 6bff7fae4c7b28a493b5824598c669fa8ab920b3) +++ sources/gui/qml/components/HeaderBar.qml (.../HeaderBar.qml) (revision e7adb742d7dd362b2deb795259694b223eea3bc0) @@ -53,6 +53,8 @@ horizontalAlignment : Text.AlignHCenter verticalAlignment : Text.AlignVCenter font.pixelSize : 35 + font.weight : Font.DemiBold + } Item { id: _dateTimeItem @@ -61,20 +63,23 @@ top : parent.top left : parent.left bottom : parent.bottom - margins : 10 + margins : 5 } Column { id: _dateTimeColumn anchors.fill: parent + spacing : 5 Text { id: _timeText color : Colors.textMain width : parent.width height : parent.height * 3/5 horizontalAlignment : Text.AlignHCenter verticalAlignment : Text.AlignVCenter - text : vDateTime.time - font.pixelSize: 40 + text : vDateTime.time + font.pixelSize : 40 + font.weight : Font.DemiBold + } Text { id: _dateText @@ -84,7 +89,7 @@ horizontalAlignment : Text.AlignHCenter verticalAlignment : Text.AlignVCenter text : vDateTime.date - font.pixelSize: 25 + font.pixelSize: 22 } } }