mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 06:13:09 +00:00
22 lines
573 B
QML
22 lines
573 B
QML
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import org.kde.plasma.components 3.0 as PC3
|
|
import plasma.applet.org.kde.plasma.mobile.homescreen.folio as Folio
|
|
|
|
PC3.Label {
|
|
id: label
|
|
wrapMode: Text.WordWrap
|
|
maximumLineCount: 2
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignTop
|
|
elide: Text.ElideRight
|
|
|
|
font.pointSize: Kirigami.Theme.defaultFont.pointSize * 0.8
|
|
font.weight: Font.Bold
|
|
}
|