diff options
-rw-r--r-- | Card.ui.qml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Card.ui.qml b/Card.ui.qml index f5ddb90..fcaf9d3 100644 --- a/Card.ui.qml +++ b/Card.ui.qml @@ -35,7 +35,7 @@ Item { width: parent.width anchors { top: image.bottom - bottom: parent.bottom + bottom: footer.top } Item { @@ -112,6 +112,13 @@ Item { } } } + + Item { + id: footer + width: parent.width + height: image.sourceSize.height / 4 + anchors.bottom: parent.bottom + } } DropShadow { |