mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 22:36:24 +00:00
12 lines
287 B
QML
12 lines
287 B
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import "../imports"
|
|
|
|
TextField {
|
|
font.family: Style.current.fontRegular.name
|
|
color: Style.current.textColor
|
|
selectByMouse: true
|
|
selectedTextColor: Style.current.textColor
|
|
selectionColor: Style.current.secondaryHover
|
|
}
|