summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--DefaultHome.ui.qml10
1 files changed, 6 insertions, 4 deletions
diff --git a/DefaultHome.ui.qml b/DefaultHome.ui.qml
index 607f6f4..1ae4751 100644
--- a/DefaultHome.ui.qml
+++ b/DefaultHome.ui.qml
@@ -107,8 +107,9 @@ Flickable {
: width < 992 ? width / 3 : width / 4
cellHeight: 125.6
- height: width < 576 ? cellHeight : width < 768 ? cellHeight * 2
- : width < 992 ? cellHeight * 3 : cellHeight * 4
+ height: width < 576 ? cellHeight * 4
+ : width < 768 ? cellHeight * 3
+ : width < 992 ? cellHeight * 2 : cellHeight
anchors {
top: parent.top
left: parent.left
@@ -124,8 +125,9 @@ Flickable {
: width < 992 ? width / 3 : width / 4
cellHeight: cellWidth * 1.3
- height: width < 576 ? cellHeight : width < 768 ? cellHeight * 2
- : width < 992 ? cellHeight * 3 : cellHeight * 4
+ height: width < 576 ? cellHeight * 4
+ : width < 768 ? cellHeight * 3
+ : width < 992 ? cellHeight * 2 : cellHeight
anchors {
top: counter.bottom
left: parent.left