26 lines
778 B
Python
26 lines
778 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
应用主入口
|
|
"""
|
|
import reflex as rx
|
|
from application.pages.index import render_index_page
|
|
|
|
app = rx.App(
|
|
style={
|
|
# 覆盖所有标签
|
|
"*": {
|
|
"margin": "0",
|
|
"padding": "0",
|
|
"box_sizing": "border-box",
|
|
},
|
|
# 覆盖伪元素 ::before 和 ::after
|
|
"*::before, *::after": {
|
|
"box_sizing": "border-box",
|
|
},
|
|
"--mc-global-bg": "linear-gradient(to bottom, #D0C9FF 0%, #E6D6F0 8%, #F1DBEA 12%, #C8DCFB 40%, #ABC6F6 60%, #87AEFE 90%)",
|
|
"--devui-base-bg-dark": "#252b3a",
|
|
} # 自定义主题颜色
|
|
) # 此处变量名需使用 app ,具体原因目前尚不清楚
|
|
# 注册首页路由
|
|
app.add_page(component=render_index_page, route="/")
|