Responsive breakpoints

Hello,

can you please share the default [PRO] px breakpoints for the responsive behaviour?
Thank you!

Hi there,

Thanks for writing around! Here are the breakpoints used in X and Pro:

For extra large screens:

@media (min-width: 1200px) {

}

For large screens:

@media (min-width: 980px) and (max-width: 1199px) {

}

For medium screens:

@media (min-width: 768px) and (max-width: 979px) {

}

For small screens:

@media (min-width: 481px) and (max-width: 767px) {

}

For extra small screens:

@media (max-width: 480px) {

}

Hope this is what you’re looking for.

Thanks!

1 Like

thank you. thats it!

You’re most welcome!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.