Created
September 11, 2021 14:01
-
-
Save bpolaszek/8fdf3e47137a10636d062f941999235e to your computer and use it in GitHub Desktop.
Quickly debug your current Tailwind CSS breakpoint
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Temporary breakpoint debugger --> | |
<span class="sm:hidden">XS</span> | |
<span class="hidden sm:inline md:hidden">SM</span> | |
<span class="hidden md:inline lg:hidden">MD</span> | |
<span class="hidden lg:inline xl:hidden">LG</span> | |
<span class="hidden xl:inline">XL</span> | |
<!-- / Temporary breakpoint debugger --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment