diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-08-16 01:26:09 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-08-16 01:26:09 +0800 |
commit | 17055280211669aba3ae8998f14ffd1ab063cf76 (patch) | |
tree | 820a7bfefe3310ec826c7eae0fc01d7336d7418b /Home | |
parent | cb034feaabb6eafc81b5fe8d2353fcb8400c6a96 (diff) |
Fix home default card heights inside
Diffstat (limited to 'Home')
-rw-r--r-- | Home/Default/Card.ui.qml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Home/Default/Card.ui.qml b/Home/Default/Card.ui.qml index 676540d..7e9af49 100644 --- a/Home/Default/Card.ui.qml +++ b/Home/Default/Card.ui.qml @@ -40,6 +40,7 @@ Item { radius: 8 color: Eduport.bsCardBg height: image.height + body.height + + footer.height * footer.visible anchors { top: parent.top topMargin: 25.6 @@ -80,9 +81,6 @@ Item { ColumnLayout { id: body - height: badgeAndFavorite.height - + title.height - + truncatedText.height anchors { top: image.bottom left: parent.left @@ -217,8 +215,10 @@ Item { Item { Layout.fillWidth: true + height: clock.height + table.height RowLayout { + id: clock anchors { left: parent.left verticalCenter: parent @@ -245,6 +245,7 @@ Item { } RowLayout { + id: table anchors { right: parent.right verticalCenter: parent |