mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-25 14:00:00 +00:00
7cf0170a8a
Integrate token count in UI Use delete later for QML exposed items to avoid errors Closes #6321
19 lines
280 B
QML
19 lines
280 B
QML
import QtQuick
|
|
|
|
TextInput {
|
|
width: 416
|
|
height: 44
|
|
|
|
font.pointSize: 23
|
|
verticalAlignment: TextInput.AlignVCenter
|
|
|
|
clip: true
|
|
|
|
Rectangle {
|
|
anchors.fill: parent
|
|
border.width: 1
|
|
border.color: "#55555555"
|
|
z: parent.z - 1
|
|
}
|
|
}
|