diff --git a/kde/sddm/Login.qml b/kde/sddm/Login.qml index d35499f..8bd5dda 100644 --- a/kde/sddm/Login.qml +++ b/kde/sddm/Login.qml @@ -111,7 +111,7 @@ SessionManagementScreen { contentItem: Text { text: loginButton.text font: loginButton.font - opacity: enabled ? 1.0 : 0.3 + opacity: enabled ? 1.0 : 0.8 color: "#ffffff" horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter @@ -120,8 +120,8 @@ SessionManagementScreen { background: Rectangle { id: buttonBackground - width:30 - height: 270 + height: parent.width + width: height / 9 radius: width / 2 rotation: -90 anchors.centerIn: parent diff --git a/kde/sddm/components/Input.qml b/kde/sddm/components/Input.qml index a667f43..a1295ec 100644 --- a/kde/sddm/components/Input.qml +++ b/kde/sddm/components/Input.qml @@ -12,10 +12,10 @@ TextField { color: "#1E2326" opacity: 0.7 radius: parent.width / 2 - height: 30 - width: 270 + width: parent.width + height: width / 9 border.width: 1 border.color: "#121517" anchors.centerIn: parent } -} \ No newline at end of file +}