Masen Furer

Results 234 comments of Masen Furer

I might pick this one up, to best demonstrate what I had in mind.

We're planning to solve this with `Literal` type annotations in #1864

Similar to #1184

![image](https://github.com/reflex-dev/reflex/assets/1524005/fc2ba353-a9f6-4794-bc56-3b2b81089e41) https://www.youtube.com/watch?v=KQShed3LA64&pp=ygUOcHljaGFybSByZWZsZXg%3D

While investigating this issue, I found that the [fix](https://github.com/pynecone-io/pynecone/pull/700/files) for #632 aims to alleviate the sort of problem seen here, but I haven't been able to get it working yet....

should be possible in the next release 0.2.9 with #1868

```python import reflex as rx class State(rx.State): pass def index() -> rx.Component: return rx.fragment( rx.vstack( rx.text( "broken", font_family='"Fira Code", Menlo, Consolas, monospace' ), rx.text( "working", font_family="'Fira Code', Menlo, Consolas, monospace"...

The problem here is that reflex has a CSS reset which removes all distinctions between headings. So unless your site is using tailwind typography or setting your own CSS rules...

This has been attempted a few times in the past. See https://github.com/reflex-dev/reflex/issues/1529 In that issue i have an example code which restores "nice looking" default styles for headers and other...

You also need to add the `class_name="prose"` to the `rx.html` as a default. I think a recent PR just added `rx-Html` as another default class name, so you should be...