mirror of
https://github.com/overte-org/overte.git
synced 2025-04-30 21:43:47 +02:00
15 lines
331 B
QML
15 lines
331 B
QML
import QtQuick 2.5
|
|
import stylesUit 1.0
|
|
import controlsUit 1.0 as HifiControlsUit
|
|
|
|
HifiControlsUit.Button {
|
|
HifiConstants {
|
|
id: hifi
|
|
}
|
|
|
|
width: Math.max(hifi.dimensions.buttonWidth, implicitTextWidth + 20)
|
|
fontSize: 18
|
|
color: hifi.buttons.blue;
|
|
colorScheme: hifi.colorSchemes.light;
|
|
height: 40
|
|
}
|