diff options
| -rw-r--r-- | modules/dashboard/Tabs.qml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/modules/dashboard/Tabs.qml b/modules/dashboard/Tabs.qml index 4a1fa0e..f50639c 100644 --- a/modules/dashboard/Tabs.qml +++ b/modules/dashboard/Tabs.qml @@ -42,7 +42,7 @@ Item { } } - StyledRect { + Item { id: indicator anchors.top: bar.bottom @@ -56,8 +56,18 @@ Item { return tab.x + (tab.width - tab.implicitWidth) / 2; } - color: Colours.palette.m3primary - radius: Appearance.rounding.full + clip: true + + StyledRect { + anchors.top: parent.top + anchors.left: parent.left + anchors.right: parent.right + implicitHeight: parent.implicitHeight * 2 + + color: Colours.palette.m3primary + radius: Appearance.rounding.full + + } Behavior on x { Anim {} |