aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2017-12-06 14:10:45 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-03-29 23:04:01 +0100
commitbfd2a63aca982465f3f7f473b580e6b440372fdc (patch)
tree8e40922ebc2d2bde073b34dddf2f1fbd68ebcd79 /components
parent01f7b6cbfb6d61c9a4b776aa8e4b1b5484a34bd1 (diff)
downloadmonzero-gui-bfd2a63aca982465f3f7f473b580e6b440372fdc.tar.gz
monzero-gui-bfd2a63aca982465f3f7f473b580e6b440372fdc.tar.xz
monzero-gui-bfd2a63aca982465f3f7f473b580e6b440372fdc.zip
Lowering default font size to 18 for input boxes
Diffstat (limited to 'components')
-rw-r--r--components/Input.qml4
1 files changed, 3 insertions, 1 deletions
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