timonweb/django-tailwind

Setting an item to not visible as the default then visible at any larger breakpoint doesn't work

Closed this issue · 1 comments

For example:

<div class="hidden sm:block sm:visible">This element is hidden on screens larger than small.</div>

This should be hidden at the smallest screen size but visible at sm and larger.

The solution is to import tailwind screens in the static_src/src/styles.css (I will submit a PR)

@dyspop Thank you for identifying the fix! I was having the same issue, and updating static_src/styles.css in my project fixed it for me.