diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 15:12:49 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2023-01-31 15:12:49 +0700 |
commit | 423f809901e3c090ac4c3d2bd1df9b533b01be14 (patch) | |
tree | 9bc070e1e60b49bddc74e8c608f43bbb43bf94ee | |
parent | e2182968494d82e345314e2e8618a88d9f7606c9 (diff) |
add `Layout.margins` to email icons & made TextField Background transparent
-rw-r--r-- | SignInFlickable.ui.qml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/SignInFlickable.ui.qml b/SignInFlickable.ui.qml index 622b2f4..61fd8fe 100644 --- a/SignInFlickable.ui.qml +++ b/SignInFlickable.ui.qml @@ -32,6 +32,7 @@ GridLayout { Image { id: envelope source: "Bootstrap/icons/envelope-fill.svg" + Layout.margins: 16 } TextField { id: email @@ -39,6 +40,9 @@ GridLayout { font.pixelSize: 15 Layout.fillWidth: true Layout.fillHeight: true + background: Rectangle { + color: "transparent" + } } } } |