mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-27 19:06:22 +00:00
24 lines
544 B
QML
24 lines
544 B
QML
pragma Singleton
|
|
import QtQuick 2.7
|
|
|
|
QtObject {
|
|
property int leftMargin: 50
|
|
property int rightMargin: 50
|
|
|
|
property QtObject buttons: QtObject {
|
|
property int bottomMargin: 15
|
|
property int spacing: 20
|
|
property int topMargin: 15
|
|
}
|
|
|
|
property QtObject confirmDialog: QtObject {
|
|
property int height: 150
|
|
property int width: 370
|
|
}
|
|
|
|
property QtObject description: QtObject {
|
|
property int fontSize: 12
|
|
property int height: 90
|
|
property int minHeight: 25
|
|
}
|
|
}
|