NPill: using monospace font

This commit is contained in:
ItsLemmy 2025-09-14 07:27:14 -04:00
parent e6372a2473
commit 80b4dad199
3 changed files with 3 additions and 2 deletions

26
Widgets/NTextVertical.qml Normal file
View file

@ -0,0 +1,26 @@
import QtQuick
import qs.Commons
import qs.Services
Column {
id: root
property string text: ""
property real fontSize: Style.fontSizeXS
property color color: Color.mOnSurface
property int fontWeight: Style.fontWeightBold
spacing: -2 * scaling
Repeater {
model: root.text.split("")
NText {
text: modelData
font.family: Settings.data.ui.fontFixed
font.pointSize: root.fontSize
font.weight: root.fontWeight
color: root.color
horizontalAlignment: Text.AlignHCenter
}
}
}