mirror of
https://github.com/Snigdha-OS/snigdhaos-sddm-config.git
synced 2025-09-05 16:06:36 +02:00
15 lines
327 B
QML
15 lines
327 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
import QtQuick.Controls 2.15
|
|
|
|
TextField {
|
|
placeholderTextColor: config.color
|
|
palette.text: config.color
|
|
font.pointSize: config.fontSize
|
|
font.family: config.font
|
|
width: parent.width
|
|
background: Rectangle {
|
|
color: "#6495ed"
|
|
radius: 5
|
|
}
|
|
} |