diff options
| author | gabeszm <vgabor92@protonmail.com> | 2026-09-13 10:48:36 +0200 |
|---|---|---|
| committer | gabeszm <vgabor92@protonmail.com> | 2026-09-13 10:48:36 +0200 |
| commit | b132f616fc27a62ad9612ec42a19b027e72a52b7 (patch) | |
| tree | bf4d29f6c4246d560fb3cd97aba059f638191ed5 /raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml | |
| parent | a65fb557cfce85e27448139e9c0317c36b7d06cb (diff) | |
| download | RaveOS-PKGBUILD-b132f616fc27a62ad9612ec42a19b027e72a52b7.tar.gz RaveOS-PKGBUILD-b132f616fc27a62ad9612ec42a19b027e72a52b7.zip | |
fix responsive ui
Diffstat (limited to 'raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml')
| -rw-r--r-- | raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml b/raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml index 43817c4..cfe507e 100644 --- a/raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml +++ b/raveos-sddm-theme/sddm-rave-theme/Components/ToastNotification.qml @@ -31,7 +31,7 @@ Item { id: toastRect anchors.horizontalCenter: parent.horizontalCenter - y: toastRoot.showing ? root.font.pointSize * 2 : -height - 10 + y: toastRoot.showing ? root.font.pointSize * 2 : -height - root.font.pointSize * 0.8 Behavior on y { NumberAnimation { duration: 380; easing.type: Easing.OutBack } @@ -43,7 +43,7 @@ Item { color: Qt.rgba(0.75, 0.08, 0.08, 0.88) border.color: Qt.rgba(1, 0.35, 0.35, 0.65) - border.width: 1 + border.width: root.font.pointSize * 0.08 // Pulse animation border SequentialAnimation on border.color { |