Style Login page

This commit is contained in:
Yuri Becker
2025-03-14 10:24:32 +01:00
parent 7099102e13
commit ef77e4c17d
7 changed files with 96 additions and 31 deletions

13
TeroStyle/Field.qml Normal file
View File

@@ -0,0 +1,13 @@
import QtQuick
import QtQuick.Controls
import QtQuick.Layouts
ColumnLayout {
required property string label
spacing: Dimensions.s
Label {
text: label
font: Typography.body
}
}