diff --git a/modules/bar/Bar.qml b/modules/bar/Bar.qml index 3553265..e9d72bf 100644 --- a/modules/bar/Bar.qml +++ b/modules/bar/Bar.qml @@ -17,8 +17,8 @@ PanelWindow { anchors.right: true implicitHeight: ( - screen.height >= 2160 ? screen.height * 0.02 : - screen.height >= 1440 ? screen.height * 0.03 : + screen.height >= 2160 ? screen.height * 0.03 : + screen.height >= 1440 ? screen.height * 0.035 : screen.height * 0.04 ) diff --git a/modules/bar/widgets/Workspaces.qml b/modules/bar/widgets/Workspaces.qml index 9ec7426..5f0f972 100644 --- a/modules/bar/widgets/Workspaces.qml +++ b/modules/bar/widgets/Workspaces.qml @@ -68,7 +68,7 @@ Row { // Workspace Row : modelData.active ? Colors.primary : Colors.secondary - font.pixelSize: Config.medium_scaling(bar.height)*1.2 + font.pixelSize: Config.medium_scaling(bar.height) font.family: Config.font font.bold: true } @@ -81,7 +81,7 @@ Row { // Workspace Row : modelData.active ? Colors.primary : Colors.secondary - font.pixelSize: Config.medium_scaling(bar.height) + font.pixelSize: Config.medium_scaling(bar.height)*0.8 font.family: Config.font font.letterSpacing: Math.floor(Config.medium_scaling(bar.height) * (2 / 3)) }