import reflex as rx
app = rx.App()
@app.add_page
def index():
return rx.fragment(
rx.box(
rx.color_mode.button(),
"Desktop",
display=["none", "none", "none", "block"],
),
rx.box(
"Mobile",
display=["block", "block", "block", "none"],
),
)
rxconfig has to disable tailwind, otherwise it works, it also works with env=dev
This broke in #5608
rxconfig has to disable tailwind, otherwise it works, it also works with
env=devThis broke in #5608