From bfd2a63aca982465f3f7f473b580e6b440372fdc Mon Sep 17 00:00:00 2001 From: Sander Ferdinand Date: Wed, 6 Dec 2017 14:10:45 +0100 Subject: [PATCH] Lowering default font size to 18 for input boxes --- components/Input.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/components/Input.qml b/components/Input.qml index 6643af14..55a9cde5 100644 --- a/components/Input.qml +++ b/components/Input.qml @@ -29,10 +29,12 @@ import QtQuick.Controls 2.2 import QtQuick 2.10 import "." 1.0 +import "../components" + TextField { font.family: Style.fontRegular.name - font.pixelSize: 22 + font.pixelSize: 18 * scaleRatio font.bold: true horizontalAlignment: TextInput.AlignLeft selectByMouse: true