Commit 49404608 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(app): little fixes on style

parent b81239ae
......@@ -53,8 +53,8 @@ ColumnLayout {
Text {
Layout.fillWidth: true
color: MenuStyle.entry.textColor
font.pointSize: MenuStyle.entry.fontSize
color: MenuStyle.entry.text.color
font.pointSize: MenuStyle.entry.text.fontSize
height: parent.height
text: modelData.entryName
verticalAlignment: Text.AlignVCenter
......
......@@ -17,6 +17,7 @@ QtObject {
property QtObject text: QtObject {
property int fontSize: 8
property string color: '#FFFFFF'
}
}
......@@ -7,7 +7,6 @@ QtObject {
property int spacing: 2
property QtObject entry: QtObject {
property int fontSize: 13
property int iconSize: 24
property int leftMargin: 20
property int rightMargin: 20
......@@ -15,7 +14,6 @@ QtObject {
property int spacing: 18
property string selectionIcon: 'right_arrow'
property string textColor: Colors.k
property QtObject color: QtObject {
property string normal: Colors.g
......@@ -23,5 +21,11 @@ QtObject {
property string pressed: Colors.i
property string selected: Colors.j
}
property QtObject text: QtObject {
property int fontSize: 13
property string color: Colors.k
}
}
}
......@@ -7,9 +7,8 @@ QtObject {
property string backgroundColor: Colors.k
property QtObject shadow: QtObject {
property double radius: 8.0
property int horizontalOffset: 0
property int radius: 8
property int samples: 15
property int verticalOffset: 2
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment