update: increased font size in systemwide text

This commit is contained in:
John 2025-12-04 23:45:21 +01:00
parent 14b86123f5
commit 34440e8a97

View file

@ -6963,7 +6963,7 @@ class Settings(Page):
description = QLabel("Control whether HydraVeil configures a sudo policy so system-wide WireGuard profiles can be started without entering your sudo password.")
description.setWordWrap(True)
description.setStyleSheet(f"color: white; font-size: 22px; font-family: Arial;")
description.setStyleSheet(f"color: white; font-size: 16px; font-family: Arial;")
layout.addWidget(description)
status_layout = QHBoxLayout()
@ -8117,7 +8117,7 @@ class SystemwidePromptPage(Page):
description = QLabel(self)
description.setGeometry(80, 100, 640, 120)
description.setWordWrap(True)
description.setStyleSheet("font-size: 14px; color: cyan;")
description.setStyleSheet("font-size: 17px; color: cyan;")
description.setText("If you're using Systemwide profiles, you may wish to enable them without having to enter the sudo password each time for convenience. This requires the sudo password to setup profiles and disable them (for security), but not to turn it on each time. You can choose to set this up now or later in the options menu.")
icon_label = QLabel(self)