summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/bar/components/OsIcon.qml14
-rw-r--r--modules/lock/Fetch.qml1
2 files changed, 7 insertions, 8 deletions
diff --git a/modules/bar/components/OsIcon.qml b/modules/bar/components/OsIcon.qml
index a61500a..6710294 100644
--- a/modules/bar/components/OsIcon.qml
+++ b/modules/bar/components/OsIcon.qml
@@ -1,15 +1,15 @@
+import qs.components
import qs.components.effects
import qs.services
import qs.config
import qs.utils
import QtQuick
-import qs.components
Item {
id: root
-
- implicitWidth: Appearance.font.size.large * 1.2
- implicitHeight: Appearance.font.size.large * 1.2
+
+ implicitWidth: Math.round(Appearance.font.size.large * 1.2)
+ implicitHeight: Math.round(Appearance.font.size.large * 1.2)
MouseArea {
anchors.fill: parent
@@ -29,8 +29,8 @@ Item {
id: caelestiaLogo
Logo {
- implicitWidth: Appearance.font.size.large * 1.8
- implicitHeight: Appearance.font.size.large * 1.8
+ implicitWidth: Math.round(Appearance.font.size.large * 1.6)
+ implicitHeight: Math.round(Appearance.font.size.large * 1.6)
}
}
@@ -39,7 +39,7 @@ Item {
ColouredIcon {
source: SysInfo.osLogo
- implicitSize: Appearance.font.size.large * 1.2
+ implicitSize: Math.round(Appearance.font.size.large * 1.2)
colour: Colours.palette.m3tertiary
}
}
diff --git a/modules/lock/Fetch.qml b/modules/lock/Fetch.qml
index 55d6aa7..e96b143 100644
--- a/modules/lock/Fetch.qml
+++ b/modules/lock/Fetch.qml
@@ -147,7 +147,6 @@ ColumnLayout {
Logo {
width: height
- height: height
}
}