diff options
Diffstat (limited to 'widgets')
| -rw-r--r-- | widgets/StyledScrollBar.qml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/widgets/StyledScrollBar.qml b/widgets/StyledScrollBar.qml new file mode 100644 index 0000000..889a1c3 --- /dev/null +++ b/widgets/StyledScrollBar.qml @@ -0,0 +1,16 @@ +import "root:/config" +import QtQuick +import QtQuick.Controls + +ScrollBar { + id: root + + contentItem: StyledRect { + radius: Appearance.rounding.full + color: Qt.alpha(Appearance.colours.m3secondary, 0.5) + } + + background: StyledRect { + implicitWidth: 10 + } +} |