linphone-desktop/linphone-app/ui/modules/Linphone/Styles/Blocks/CardBlockStyle.qml
Julien Wadel 1cbdc96b30 Colors/Images rework
Remove Call and notices logs from db
Delete empty chat rooms after requesting it
Option of showing/hidding empty chat rooms
Many fixes on notifications count, imdn states, synchronizations behaviors, mouse cursor, etc.
Fix crashes
Fix timeline times
2021-08-01 22:49:42 +02:00

33 lines
725 B
QML

pragma Singleton
import QtQml 2.2
import Units 1.0
// =============================================================================
QtObject {
property int spacing: 30
property int width: 200
property QtObject content: QtObject {
property int height: 40
}
property QtObject description: QtObject {
property color color: Colors.n.color
property int pointSize: Units.dp * 10
property int height: 40
}
property QtObject icon: QtObject {
property int bottomMargin: 20
property int size: 148
}
property QtObject title: QtObject {
property color color: Colors.j.color
property int bottomMargin: 10
property int pointSize: Units.dp * 10
property int height: 20
}
}