diff --git a/template/src/model/ui/component/template/home/HomeTextTemplate.js b/template/src/model/ui/component/template/home/HomeTextTemplate.js index 94675d3..7875ca1 100644 --- a/template/src/model/ui/component/template/home/HomeTextTemplate.js +++ b/template/src/model/ui/component/template/home/HomeTextTemplate.js @@ -17,8 +17,7 @@ export const execute = (home_content) => // Hello, World. const text = response.has("HomeText") ? response.get("HomeText").word : ""; const textField = textComponent(text, { - "autoSize": "left", - "border": true, + "autoSize": "center", "type": "input" }); diff --git a/template/src/model/ui/component/template/top/TopButtonTemplate.js b/template/src/model/ui/component/template/top/TopButtonTemplate.js index 783ce89..6612c16 100644 --- a/template/src/model/ui/component/template/top/TopButtonTemplate.js +++ b/template/src/model/ui/component/template/top/TopButtonTemplate.js @@ -19,7 +19,6 @@ export const execute = (top_content) => const text = response.has("TopText") ? response.get("TopText").word : ""; const textField = textComponent(text, { - "border": true, "autoSize": "center" });