diff --git a/components/StyledLabel.qml b/components/StyledRectangle.qml similarity index 100% rename from components/StyledLabel.qml rename to components/StyledRectangle.qml diff --git a/modules/bar/components/Clock.qml b/modules/bar/components/Clock.qml index 9b483e5..3ddb5a7 100644 --- a/modules/bar/components/Clock.qml +++ b/modules/bar/components/Clock.qml @@ -1,7 +1,7 @@ import qs.components import Quickshell -StyledLabel { +StyledRectangle { StyledText { text: ` ${Qt.formatDateTime(clock.date, "hh:mm:ss AP")}` SystemClock { diff --git a/modules/bar/components/Memory.qml b/modules/bar/components/Memory.qml index 43aae51..55f90df 100644 --- a/modules/bar/components/Memory.qml +++ b/modules/bar/components/Memory.qml @@ -5,7 +5,7 @@ import qs.utils import QtQuick import QtQuick.Layouts -StyledLabel { +StyledRectangle { RowLayout { diff --git a/modules/bar/components/Network.qml b/modules/bar/components/Network.qml index 47a0406..57a0905 100644 --- a/modules/bar/components/Network.qml +++ b/modules/bar/components/Network.qml @@ -5,7 +5,7 @@ import qs.utils import QtQuick import QtQuick.Layouts -StyledLabel { +StyledRectangle { RowLayout { diff --git a/modules/bar/components/Storage.qml b/modules/bar/components/Storage.qml index fdb1fd0..0a1d2b7 100644 --- a/modules/bar/components/Storage.qml +++ b/modules/bar/components/Storage.qml @@ -5,7 +5,7 @@ import qs.utils import QtQuick import QtQuick.Layouts -StyledLabel { +StyledRectangle { RowLayout { diff --git a/modules/bar/components/bluetooth/AvailableDevice.qml b/modules/bar/components/bluetooth/AvailableDevice.qml index c941649..62a65f5 100644 --- a/modules/bar/components/bluetooth/AvailableDevice.qml +++ b/modules/bar/components/bluetooth/AvailableDevice.qml @@ -7,7 +7,7 @@ import Quickshell import Quickshell.Bluetooth import Quickshell.Widgets -StyledLabel { +StyledRectangle { id: root required property BluetoothDevice modelData diff --git a/modules/bar/components/bluetooth/ConnectedDevice.qml b/modules/bar/components/bluetooth/ConnectedDevice.qml index 11944dd..2b6f079 100644 --- a/modules/bar/components/bluetooth/ConnectedDevice.qml +++ b/modules/bar/components/bluetooth/ConnectedDevice.qml @@ -8,7 +8,7 @@ import Quickshell import Quickshell.Bluetooth import Quickshell.Widgets -StyledLabel { +StyledRectangle { id: root required property BluetoothDevice modelData diff --git a/modules/bar/components/bluetooth/PairedDevice.qml b/modules/bar/components/bluetooth/PairedDevice.qml index 27afaf3..297c63f 100644 --- a/modules/bar/components/bluetooth/PairedDevice.qml +++ b/modules/bar/components/bluetooth/PairedDevice.qml @@ -9,7 +9,7 @@ import Quickshell import Quickshell.Bluetooth import Quickshell.Widgets -StyledLabel { +StyledRectangle { id: root required property BluetoothDevice modelData diff --git a/modules/bar/components/notifications/NotificationItem.qml b/modules/bar/components/notifications/NotificationItem.qml index 690d800..b2c45fb 100644 --- a/modules/bar/components/notifications/NotificationItem.qml +++ b/modules/bar/components/notifications/NotificationItem.qml @@ -7,7 +7,7 @@ import QtQuick.Layouts import Quickshell import Quickshell.Widgets -StyledLabel { +StyledRectangle { id: root required property var modelData diff --git a/modules/bar/components/notifications/NotificationMenu.qml b/modules/bar/components/notifications/NotificationMenu.qml index d871da8..877f30f 100644 --- a/modules/bar/components/notifications/NotificationMenu.qml +++ b/modules/bar/components/notifications/NotificationMenu.qml @@ -29,7 +29,7 @@ StyledPopupWindow { onClicked: Notifications.clear() } - StyledLabel { + StyledRectangle { Layout.columnSpan: 2 color: Styling.theme.base200 StyledListView {