From d7f3690e85b2712cadaa8da2a1d153d5d915393f Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Thu, 20 Aug 2020 21:37:28 +0200 Subject: [PATCH] ui: larger font size --- selfdrive/ui/qt/settings.cc | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/selfdrive/ui/qt/settings.cc b/selfdrive/ui/qt/settings.cc index 2dd19ca806..3da1934bc7 100644 --- a/selfdrive/ui/qt/settings.cc +++ b/selfdrive/ui/qt/settings.cc @@ -49,8 +49,8 @@ ParamsToggle::ParamsToggle(QString param, QString title, QString description, QS } setStyleSheet(R"( - QCheckBox { font-size: 40px } - QLabel { font-size: 20px } + QCheckBox { font-size: 70px } + QLabel { font-size: 40px } * { background-color: #114265; } @@ -135,6 +135,9 @@ SettingsWindow::SettingsWindow(QWidget *parent) : QWidget(parent) { setStyleSheet(R"( QPushButton { font-size: 40px } + * { + color: white; + background-color: #072339; + } )"); - }