13 lines
254 B
QML
13 lines
254 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
|
|
Singleton {
|
|
readonly property Sizes sizes: Sizes {}
|
|
|
|
component Sizes: QtObject {
|
|
readonly property int tabIndicatorHeight: 3
|
|
readonly property int tabIndicatorSpacing: 5
|
|
}
|
|
}
|