mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-24 04:28:58 +00:00
- implement the basic Onboarding UI skeleton and the Create Profile flows - adjust the PasswordView and EnterSeedPhrase views to the latest design - add the main OnboardingLayout and StatusPinInput pages to Storybook - change terminology app-wide: "Seed phrase" -> "Recovery phrase" - implement the Login flows (seed, sync, keycard) - amend the keycard flow sequences with separate (non) empty page Fixes #16719 Fixes #16742 Fixes #16743
33 lines
663 B
QML
33 lines
663 B
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import QtGraphicalEffects 1.15
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Frame {
|
|
id: root
|
|
|
|
property bool dropShadow: true
|
|
property alias cornerRadius: background.radius
|
|
|
|
padding: Theme.bigPadding
|
|
|
|
background: Rectangle {
|
|
id: background
|
|
border.width: 1
|
|
border.color: Theme.palette.baseColor2
|
|
radius: 20
|
|
color: Theme.palette.background
|
|
}
|
|
|
|
layer.enabled: root.dropShadow
|
|
layer.effect: DropShadow {
|
|
verticalOffset: 4
|
|
radius: 7
|
|
samples: 15
|
|
cached: true
|
|
color: Theme.palette.dropShadow
|
|
}
|
|
}
|