From 1b207eb444f73a8fef06ba6b13319cb0a7aa92b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Brand=C3=A9ho?= Date: Wed, 6 Mar 2024 01:10:44 +0100 Subject: [PATCH] fix template (#2787) --- .../.templates/jinja/custom_components/demo_app.py.jinja2 | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 b/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 index 3eccd690ea2..eb73c12c010 100644 --- a/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 +++ b/reflex/.templates/jinja/custom_components/demo_app.py.jinja2 @@ -20,11 +20,14 @@ def index() -> rx.Component: rx.theme_panel(), rx.vstack( rx.heading("Welcome to Reflex!", size="9"), - rx.text("Test your custom component by editing ", rx.code(filename)), + rx.text( + "Test your custom component by editing ", + rx.code(filename), + font_size="2em", + ), {{ module_name }}(), align="center", spacing="7", - font_size="2em", ), height="100vh", )