nheko/resources/qml/delegates/Pill.qml
2020-04-28 01:10:54 -07:00

18 lines
283 B
QML

import QtQuick 2.5
import QtQuick.Controls 2.1
Label {
color: colors.brightText
horizontalAlignment: Text.AlignHCenter
leftPadding: 24
rightPadding: 24
topPadding: 8
bottomPadding: 8
background: Rectangle {
radius: parent.height / 2
color: colors.dark
}
}