Heavy changes

This commit is contained in:
Stefano Moretti
2023-04-21 18:07:17 +02:00
parent 32a567a950
commit 11606b8f39
52 changed files with 1578 additions and 748 deletions

16
qml/HorizontalDivider.qml Normal file
View File

@ -0,0 +1,16 @@
import QtQuick
import QtQuick.Layouts
Item {
height: 8
Layout.fillWidth: true
// https://www.google.com/design/spec/components/dividers.html#dividers-types-of-dividers
Rectangle {
anchors.centerIn: parent
width: parent.width
height: 1
opacity: Style.dividerOpacity
color: Style.dividerColor
}
}