diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-29 10:47:59 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2023-03-29 10:47:59 +0800 |
commit | be665a2744f7fb4a8b15e6a0068a8317f5824be9 (patch) | |
tree | 00c5d6d51977a84134e5365d9bcf20b757f4d787 /TextField | |
parent | 4563af569e1824a7e8bcdad64c8488f520fccc17 (diff) |
Instructor edit profile supports dark mode
Diffstat (limited to 'TextField')
-rw-r--r-- | TextField/Input.ui.qml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/TextField/Input.ui.qml b/TextField/Input.ui.qml index d036348..9e0a821 100644 --- a/TextField/Input.ui.qml +++ b/TextField/Input.ui.qml @@ -8,7 +8,17 @@ TextField { weight: Eduport.bodyFont.weight pointSize: Eduport.formControlFontSize } + color: Eduport.bsGray700 background: Rectangle { - color: "transparent" + radius: 5.2 + color: Eduport.bsBodyBg + border { + color: Eduport.bsGray300 + width: 1 + } } + topPadding: 8 + leftPadding: 16 + rightPadding: 16 + bottomPadding: 8 } |