mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-23 02:00:20 +07:00
18 lines
384 B
QML
18 lines
384 B
QML
|
|
import QtQuick 2.12
|
||
|
|
import QtQuick.Controls 2.12
|
||
|
|
|
||
|
|
Text {
|
||
|
|
font.family: "Lato"
|
||
|
|
font.styleName: "normal"
|
||
|
|
font.pixelSize: 24
|
||
|
|
color: "#100A44"
|
||
|
|
horizontalAlignment: Text.AlignHCenter
|
||
|
|
verticalAlignment: Text.AlignVCenter
|
||
|
|
x: 10
|
||
|
|
y: 35
|
||
|
|
width: parent.width - 40
|
||
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
||
|
|
wrapMode: Text.Wrap
|
||
|
|
//height: 31
|
||
|
|
}
|