This is the sizing
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
},
Source: config.full.js#L813C1-L819C7
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Quick question if you dont mind, something very strange is happening if i set this the h1 is still not visible on any viewport width
<h1 class="hidden md:block">hello</h1>
if i add this it works as expected, it seems like md, lg or larger does not work
<h1 class="hidden sm:block">hello</h1>
do you know what could be causing this issue?
Please or to participate in this conversation.