18 lines
451 B
QML
18 lines
451 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.Components
|
|
import ZShell.Config
|
|
import qs.Services
|
|
|
|
CustomText {
|
|
property bool first
|
|
|
|
Layout.bottomMargin: Tokens.spacing.extraSmall
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: Tokens.padding.small
|
|
Layout.topMargin: first ? 0 : Tokens.spacing.large - ((parent as ColumnLayout).spacing ?? 0)
|
|
color: Colors.palette.m3onSurfaceVariant
|
|
elide: Text.ElideRight
|
|
font.pointSize: Tokens.font.size.medium
|
|
}
|