diff options
Diffstat (limited to 'Authentication/SignIn.ui.qml')
| -rw-r--r-- | Authentication/SignIn.ui.qml | 34 |
1 files changed, 15 insertions, 19 deletions
diff --git a/Authentication/SignIn.ui.qml b/Authentication/SignIn.ui.qml index 1e71e2b..d35eb39 100644 --- a/Authentication/SignIn.ui.qml +++ b/Authentication/SignIn.ui.qml @@ -1,7 +1,7 @@ import QtQuick import QtQuick.Controls import QtQuick.Layouts -import Qt5Compat.GraphicalEffects +import QtQuick.Effects import Bootstrap import Eduport import "../TextField" as TxtFld @@ -87,15 +87,13 @@ Flickable { 20 } - ColorOverlay { - color: - Eduport - .bsSecondary - source: - parent - anchors - .fill: - parent + layer { + enabled: true + effect: MultiEffect { + brightness: 1.0 + colorization: 1.0 + colorizationColor: Eduport.bsSecondary + } } } @@ -156,15 +154,13 @@ Flickable { 20 } - ColorOverlay { - color: - Eduport - .bsSecondary - source: - parent - anchors - .fill: - parent + layer { + enabled: true + effect: MultiEffect { + brightness: 1.0 + colorization: 1.0 + colorizationColor: Eduport.bsSecondary + } } } |