property real fontSizeXS: 9 property real fontSizeS: 10 property real fontSizeM: 11 property real fontSizeL: 13 property real fontSizeXL: 16 property real fontSizeXXL: 18 property real fontSizeXXXL: 24
11 lines
204 B
QML
11 lines
204 B
QML
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Widgets
|
|
import qs.Commons
|
|
import qs.Services
|
|
|
|
Rectangle {
|
|
width: parent.width
|
|
height: Math.max(1, Style.borderS * scaling)
|
|
color: Color.mOutline
|
|
}
|