added CardType component

- added transition for BasicButtonType
This commit is contained in:
vladimir.kuznetsov 2023-04-06 16:33:53 +03:00
parent 8e61d77497
commit 167d57408d
4 changed files with 142 additions and 1 deletions

View file

@ -46,7 +46,7 @@ PageBase {
Layout.fillWidth: true
Layout.topMargin: 10
defaultColor: "#0E0E11"
defaultColor: "transparent"
hoveredColor: Qt.rgba(255, 255, 255, 0.08)
pressedColor: Qt.rgba(255, 255, 255, 0.12)
disabledColor: "#878B91"
@ -99,6 +99,24 @@ PageBase {
height: 1
color: "#2C2D30"
}
CardType {
Layout.fillWidth: true
Layout.topMargin: 10
headerText: "Высокий"
bodyText: "Многие иностранные сайты и VPN-провайдеры заблокированы"
footerText: "футер"
}
CardType {
Layout.fillWidth: true
Layout.topMargin: 10
headerText: "Высокий"
bodyText: "Многие иностранные сайты и VPN-провайдеры заблокированы"
footerText: "футер"
}
}
}
}