Commit 49404608 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(app): little fixes on style

parent b81239ae
...@@ -53,8 +53,8 @@ ColumnLayout { ...@@ -53,8 +53,8 @@ ColumnLayout {
Text { Text {
Layout.fillWidth: true Layout.fillWidth: true
color: MenuStyle.entry.textColor color: MenuStyle.entry.text.color
font.pointSize: MenuStyle.entry.fontSize font.pointSize: MenuStyle.entry.text.fontSize
height: parent.height height: parent.height
text: modelData.entryName text: modelData.entryName
verticalAlignment: Text.AlignVCenter verticalAlignment: Text.AlignVCenter
......
...@@ -17,6 +17,7 @@ QtObject { ...@@ -17,6 +17,7 @@ QtObject {
property QtObject text: QtObject { property QtObject text: QtObject {
property int fontSize: 8 property int fontSize: 8
property string color: '#FFFFFF' property string color: '#FFFFFF'
} }
} }
...@@ -7,7 +7,6 @@ QtObject { ...@@ -7,7 +7,6 @@ QtObject {
property int spacing: 2 property int spacing: 2
property QtObject entry: QtObject { property QtObject entry: QtObject {
property int fontSize: 13
property int iconSize: 24 property int iconSize: 24
property int leftMargin: 20 property int leftMargin: 20
property int rightMargin: 20 property int rightMargin: 20
...@@ -15,7 +14,6 @@ QtObject { ...@@ -15,7 +14,6 @@ QtObject {
property int spacing: 18 property int spacing: 18
property string selectionIcon: 'right_arrow' property string selectionIcon: 'right_arrow'
property string textColor: Colors.k
property QtObject color: QtObject { property QtObject color: QtObject {
property string normal: Colors.g property string normal: Colors.g
...@@ -23,5 +21,11 @@ QtObject { ...@@ -23,5 +21,11 @@ QtObject {
property string pressed: Colors.i property string pressed: Colors.i
property string selected: Colors.j property string selected: Colors.j
} }
property QtObject text: QtObject {
property int fontSize: 13
property string color: Colors.k
}
} }
} }
...@@ -7,9 +7,8 @@ QtObject { ...@@ -7,9 +7,8 @@ QtObject {
property string backgroundColor: Colors.k property string backgroundColor: Colors.k
property QtObject shadow: QtObject { property QtObject shadow: QtObject {
property double radius: 8.0
property int horizontalOffset: 0 property int horizontalOffset: 0
property int radius: 8
property int samples: 15 property int samples: 15
property int verticalOffset: 2 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