diff --git a/src/activities/letter-in-word/Card.qml b/src/activities/letter-in-word/Card.qml --- a/src/activities/letter-in-word/Card.qml +++ b/src/activities/letter-in-word/Card.qml @@ -28,7 +28,7 @@ Item { id: cardItem //width: cardImage.width - height: wordPic.height + cardImage.height - 30 * ApplicationInfo.ratio + height: wordPic.height property bool mouseActive: true Image { @@ -43,13 +43,15 @@ Image { id: cardImage - anchors.top: wordPic.bottom + anchors.centerIn: wordPic anchors.topMargin: -30 * ApplicationInfo.ratio - sourceSize.width: cardItem.width - 10 + sourceSize.width: cardItem.width - 20 + sourceSize.height: width fillMode: Image.PreserveAspectFit source: Activity.resUrl2 + "cloud.svg" z: (state == 'scaled') ? 1 : -1 //visible: index % 2 != 0 ? false : true + opacity: 0.63 GCText { id: textItem @@ -112,7 +114,7 @@ NumberAnimation { target: cardImage property: "opacity" - to: 1; duration: 400 + to: 0.63; duration: 400 } }