mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 12:28:08 +00:00
18 lines
387 B
QML
18 lines
387 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Colors 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property color color: Colors.k
|
|
property int bottomMargin: 35
|
|
property int leftMargin: 90
|
|
property int rightMargin: 90
|
|
property int topMargin: 50
|
|
|
|
property QtObject stackAnimation: QtObject {
|
|
property int duration: 400
|
|
}
|
|
}
|