76b699ad64
Put QML components into folders, remove unused ones, split __init__.py with engine.py.
13 lines
355 B
QML
13 lines
355 B
QML
import QtQuick 2.7
|
|
import "../base" as Base
|
|
|
|
Base.HLabel {
|
|
text: date_time.toLocaleDateString()
|
|
width: rootCol.width
|
|
horizontalAlignment: Text.AlignHCenter
|
|
topPadding: rootCol.isFirstMessage ? 0 : rootCol.verticalPadding * 4
|
|
bottomPadding: rootCol.verticalPadding * 2
|
|
font.pixelSize: normalSize * 1.1
|
|
color: "darkolivegreen"
|
|
}
|